Listingul exemplelor
Lista tuturor exemplelor din manual
- Example#0 - Un exemplu introductiv
- Example#1 - Our first PHP script: hello.php
- Example#2 - Get system information from PHP
- Example#3 - Printing a variable (Array element)
- Example#4 - Example using control
structures and functions
- Example#5 - Mixing both HTML and PHP modes
- Example#6 - A simple HTML form
- Example#7 - Printing data from our form
- Example#8 - Installation Instructions (Apache Shared Module Version) for PHP
- Example#9 - Installation Instructions (Static Module Installation for Apache) for PHP
- Example#10 - Example commands for restarting Apache
- Example#11 -
- Example#12 -
- Example#13 -
- Example#14 -
- Example#15 -
- Example#16 -
- Example#17 -
- Example#18 -
- Example#19 -
- Example#20 -
- Example#21 -
- Example#22 -
- Example#23 -
- Example#24 - Partial lighttpd.conf
- Example#25 - Spawning FastCGI Responders
- Example#26 - Connecting to remote php-fastcgi instances
- Example#27 -
- Example#28 -
- Example#29 - OpenBSD Package Install Example
- Example#30 - Debian Install Example with Apache 2
- Example#31 - Stopping and starting Apache once PHP is installed
- Example#32 - Methods for listing additional PHP 5 packages
- Example#33 - Install PHP with MySQL, cURL
- Example#34 - Recommended OpCache configuration
- Example#35 - Recommended WinCache configuration
- Example#36 - Command line to configure IIS and PHP
- Example#37 - PHP 5 package structure
- Example#38 - CGI and FastCGI settings in php.ini
- Example#39 - Configuring FastCGI extension to handle PHP requests
- Example#40 - Configuring file access permissions
- Example#41 - Configuring FastCGI and PHP recycling
- Example#42 - Configuring FastCGI timeout settings
- Example#43 - Changing the location of php.ini file
- Example#44 - CGI and FastCGI settings in php.ini
- Example#45 - Creating IIS FastCGI process pool
- Example#46 - Creating handler mapping for PHP requests
- Example#47 - Determining the account used as IIS anonymous identity
- Example#48 - Configuring file access permissions
- Example#49 - Set index.php as a default document in IIS
- Example#50 - Configuring FastCGI and PHP recycling
- Example#51 - Configuring FastCGI timeout settings
- Example#52 - Changing the location of php.ini file
- Example#53 - PHP as an Apache 1.3.x module
- Example#54 - PHP and Apache 1.3.x as CGI
- Example#55 - PHP and Apache 2.x as handler
- Example#56 -
- Example#57 - PHP and Apache 2.x as CGI
- Example#58 - Configure Apache to run PHP as FastCGI
- Example#59 - ISAPI configuration of Sambar
- Example#60 - Enable Bzip2 extension for PHP-Windows
- Example#61 - Registry changes
- Example#62 - Passing environment variables and PHP settings to a pool
- Example#63 - set PHP settings in nginx.conf
- Example#64 - phpinfo call
- Example#65 - php.ini Environment Variables
- Example#66 - php.ini example
- Example#67 - Apache configuration example
- Example#68 -
- Example#69 - Evadare avansată folosind condiții
- Example#70 - Tag-uri PHP de deschidere și închidere
- Example#71 - Integer literals
- Example#72 - Integer overflow on a 32-bit system
- Example#73 - Integer overflow on a 64-bit system
- Example#74 - Invalid example
- Example#75 - Valid example
- Example#76 - Heredoc string quoting example
- Example#77 - Heredoc in arguments example
- Example#78 - Using Heredoc to initialize static values
- Example#79 - Using double quotes in Heredoc
- Example#80 - Nowdoc string quoting example
- Example#81 - Static data example
- Example#82 - Simple syntax example
- Example#83 - Negative numeric indices
- Example#84 - Some string examples
- Example#85 - Differences between PHP 5.3 and PHP 5.4
- Example#86 - A simple array
- Example#87 - Type Casting and Overwriting example
- Example#88 - Mixed integer and string keys
- Example#89 - Indexed arrays without key
- Example#90 - Keys not on all elements
- Example#91 - Accessing array elements
- Example#92 - Array dereferencing
- Example#93 - Using array()
- Example#94 - Collection
- Example#95 - Changing element in the loop
- Example#96 - One-based index
- Example#97 - Filling an array
- Example#98 - Sorting an array
- Example#99 - Recursive and multi-dimensional arrays
- Example#100 - Callback function examples
- Example#101 - Callback example using a Closure
- Example#102 - Default values of uninitialized variables
- Example#103 - Using global
- Example#104 - Using $GLOBALS instead of global
- Example#105 - Example demonstrating superglobals and scope
- Example#106 - Example demonstrating need for static variables
- Example#107 - Example use of static variables
- Example#108 - Static variables with recursive functions
- Example#109 - Declaring static variables
- Example#110 - Variable property example
- Example#111 - A simple HTML form
- Example#112 - Accessing data from a simple POST HTML form
- Example#113 - Old methods of accessing user input
- Example#114 - More complex form variables
- Example#115 - A setcookie example
- Example#116 - Valid and invalid constant names
- Example#117 - Defining Constants
- Example#118 - Defining Constants using the const keyword
- Example#119 - Associativity
- Example#120 - Undefined order of evaluation
- Example#121 - +, - and . have the same precedence
- Example#122 - Assigning by reference
- Example#123 - Bitwise AND, OR and XOR operations on integers
- Example#124 - Bitwise XOR operations on strings
- Example#125 - Bit shifting on integers
- Example#126 - Boolean/null comparison
- Example#127 - Transcription of standard array comparison
- Example#128 - Assigning a default value
- Example#129 - Non-obvious Ternary Behaviour
- Example#130 - Assigning a default value
- Example#131 - Nesting null coalescing operator
- Example#132 - Arithmetic Operations on Character Variables
- Example#133 - Logical operators illustrated
- Example#134 - Comparing arrays
- Example#135 - Using instanceof with classes
- Example#136 - Using instanceof with inherited classes
- Example#137 - Using instanceof to check if object is not an
instanceof a class
- Example#138 - Using instanceof for class
- Example#139 - Using instanceof with other variables
- Example#140 - Using instanceof to test other variables
- Example#141 - Avoiding classname lookups and fatal errors with instanceof in PHP 5.0
- Example#142 - switch structure
- Example#143 - switch structure allows usage of strings
- Example#144 - Tick usage example
- Example#145 - Ticks usage example
- Example#146 - Declaring an encoding for the script.
- Example#147 - Basic include example
- Example#148 - Including within functions
- Example#149 - include through HTTP
- Example#150 - Comparing return value of include
- Example#151 - include and the return statement
- Example#152 - Using output buffering to include a PHP file into a string
- Example#153 - include_once with a case insensitive OS in PHP 4
- Example#154 - goto example
- Example#155 - goto loop example
- Example#156 - This will not work
- Example#157 - Pseudo code to demonstrate function uses
- Example#158 - Conditional functions
- Example#159 - Functions within functions
- Example#160 - Recursive functions
- Example#161 - Passing arrays to functions
- Example#162 - Passing function parameters by reference
- Example#163 - Use of default parameters in functions
- Example#164 - Using non-scalar types as default values
- Example#165 - Incorrect usage of default function arguments
- Example#166 - Correct usage of default function arguments
- Example#167 -
- Example#168 - Basic class type declaration
- Example#169 - Basic interface type declaration
- Example#170 - Nullable type declaration
- Example#171 - Strict typing
- Example#172 - Weak typing
- Example#173 - Catching TypeError
- Example#174 - Using ... to access variable arguments
- Example#175 - Using ... to provide arguments
- Example#176 - Type hinted variable arguments
- Example#177 - Accessing variable arguments in PHP 5.5 and earlier
- Example#178 - Use of return
- Example#179 - Returning an array to get multiple values
- Example#180 - Returning a reference from a function
- Example#181 - Basic return type declaration
- Example#182 - Strict mode in action
- Example#183 - Returning an object
- Example#184 - Variable function example
- Example#185 - Variable method example
- Example#186 - Variable method example with static properties
- Example#187 - Complex callables
- Example#188 - Anonymous function example
- Example#189 - Anonymous function variable assignment example
- Example#190 - Inheriting variables from the parent scope
- Example#191 - Closures and scoping
- Example#192 - Automatic binding of $this
- Example#193 - Attempting to use $this inside a static anonymous function
- Example#194 - Attempting to bind an object to a static anonymous function
- Example#195 - Simple Class definition
- Example#196 - Some examples of the $this pseudo-variable
- Example#197 - Creating an instance
- Example#198 - Object Assignment
- Example#199 - Creating new objects
- Example#200 - Access member of newly created object
- Example#201 - Property access vs. method call
- Example#202 - Calling an anonymous function stored in a property
- Example#203 - Simple Class Inheritance
- Example#204 - Class name resolution
- Example#205 - property declarations
- Example#206 - Example of using a nowdoc to initialize a property
- Example#207 - Defining and using a constant
- Example#208 - Static data example
- Example#209 - Constant expression example
- Example#210 - Class constant visibility modifiers
- Example#211 - Exemplu cu autoîncărcare
- Example#212 - Un alt exemplu Autoload
- Example#213 - Autoîncărcarea cu tratarea excepțiilor pentru 5.3.0+
- Example#214 - Autoîncărcarea cu tratarea excepțiilor pentru 5.3.0+ - Fără excepție personalizată
- Example#215 - utilizarea noilor constructori unificați
- Example#216 - Constructori în clasele cu spații de nume
- Example#217 - Exemplu destructor
- Example#218 - Declarare proprietăților
- Example#219 - Declarație metode
- Example#220 - Accesarea membrelor private ale unui obiect de același tip
- Example#221 - Inheritance Example
- Example#222 - :: from outside the class definition
- Example#223 - :: from inside the class definition
- Example#224 - Calling a parent's method
- Example#225 - Static method example
- Example#226 - Static property example
- Example#227 - Exemplu de clasă abstractă
- Example#228 - Exemplu cu clasă abstractă
- Example#229 - Interface example
- Example#230 - Extendable Interfaces
- Example#231 - Multiple interface inheritance
- Example#232 - Interfaces with constants
- Example#233 - Trait example
- Example#234 - Precedence Order Example
- Example#235 - Alternate Precedence Order Example
- Example#236 - Multiple Traits Usage
- Example#237 - Conflict Resolution
- Example#238 - Changing Method Visibility
- Example#239 - Traits Composed from Traits
- Example#240 - Express Requirements by Abstract Methods
- Example#241 - Static Variables
- Example#242 - Static Methods
- Example#243 - Defining Properties
- Example#244 - Conflict Resolution
- Example#245 - Overloading properties via the __get(),
__set(), __isset()
and __unset() methods
- Example#246 - Overloading methods via the __call()
and __callStatic() methods
- Example#247 - Simple Object Iteration
- Example#248 - Object Iteration implementing Iterator
- Example#249 - Object Iteration implementing IteratorAggregate
- Example#250 - Sleep and wakeup
- Example#251 - Simple example
- Example#252 - Using __invoke()
- Example#253 - Using __set_state() (since PHP 5.1.0)
- Example#254 - Using __debugInfo()
- Example#255 - Final methods example
- Example#256 - Final class example
- Example#257 - Cloning an object
- Example#258 - Access member of freshly cloned object
- Example#259 - Example of object comparison in PHP 5
- Example#260 - self:: usage
- Example#261 - static:: simple usage
- Example#262 - static:: usage in a non-static context
- Example#263 - Forwarding and non-forwarding calls
- Example#264 - References and Objects
- Example#265 - Namespace syntax example
- Example#266 - Declaring a single namespace
- Example#267 - Declaring a single namespace
- Example#268 - Declaring a single namespace with hierarchy
- Example#269 - Declaring multiple namespaces, simple combination syntax
- Example#270 - Declaring multiple namespaces, bracketed syntax
- Example#271 - Declaring multiple namespaces and unnamespaced code
- Example#272 - Declaring multiple namespaces and unnamespaced code
- Example#273 - Accessing global classes, functions and constants from within a namespace
- Example#274 - Dynamically accessing elements
- Example#275 - Dynamically accessing namespaced elements
- Example#276 - __NAMESPACE__ example, namespaced code
- Example#277 - __NAMESPACE__ example, global code
- Example#278 - using __NAMESPACE__ for dynamic name construction
- Example#279 - the namespace operator, inside a namespace
- Example#280 - the namespace operator, in global code
- Example#281 - importing/aliasing with the use operator
- Example#282 - importing/aliasing with the use operator, multiple use statements combined
- Example#283 - Importing and dynamic names
- Example#284 - Importing and fully qualified names
- Example#285 - Illegal importing rule
- Example#286 - Using global space specification
- Example#287 - Accessing global classes inside a namespace
- Example#288 - global functions/constants fallback inside a namespace
- Example#289 - Name resolutions illustrated
- Example#290 - Accessing global classes outside a namespace
- Example#291 - Accessing global classes outside a namespace
- Example#292 - Accessing internal classes in namespaces
- Example#293 - Accessing internal classes, functions or constants in namespaces
- Example#294 - Fully Qualified names
- Example#295 - Qualified names
- Example#296 - Unqualified class names
- Example#297 - Unqualified function or constant names
- Example#298 - Dangers of using namespaced names inside a double-quoted string
- Example#299 - Undefined constants
- Example#300 - Undefined constants
- Example#301 - The Built in Exception class
- Example#302 - Extending the Exception class (PHP 5.3.0+)
- Example#303 - Throwing an Exception
- Example#304 - Exception handling with a finally block
- Example#305 - Nested Exception
- Example#306 - Implementing range as a generator
- Example#307 - A simple example of yielding values
- Example#308 - Yielding a key/value pair
- Example#309 - Yielding NULLs
- Example#310 - Yielding values by reference
- Example#311 - yield from with iterator_to_array
- Example#312 - Basic use of yield from
- Example#313 - yield from and return values
- Example#314 - Using references with undefined variables
- Example#315 - Referencing global variables inside functions
- Example#316 - References and foreach statement
- Example#317 - $GLOBALS example
- Example#318 - $_SERVER example
- Example#319 - $_GET example
- Example#320 - $_POST example
- Example#321 - $_ENV example
- Example#322 - $_COOKIE example
- Example#323 - $php_errormsg example
- Example#324 - $http_response_header example
- Example#325 - $argc example
- Example#326 - $argv example
- Example#327 - Exception::getMessage example
- Example#328 - Exception::getPrevious example
- Example#329 - Exception::getCode example
- Example#330 - Exception::getFile example
- Example#331 - Exception::getLine example
- Example#332 - Exception::getTrace example
- Example#333 - Exception::getTraceAsString example
- Example#334 - Exception::__toString example
- Example#335 - Use set_error_handler to change error messages into ErrorException.
- Example#336 - ErrorException::getSeverity example
- Example#337 - Error::getMessage example
- Example#338 - Error::getPrevious example
- Example#339 - Error::getCode example
- Example#340 - Error::getFile example
- Example#341 - Error::getLine example
- Example#342 - Error::getTrace example
- Example#343 - Error::getTraceAsString example
- Example#344 - Error::__toString example
- Example#345 - Basic usage
- Example#346 - Basic usage
- Example#347 - Basic usage
- Example#348 - ArrayAccess::offsetExists example
- Example#349 - Basic usage
- Example#350 - Closure::bind example
- Example#351 - Closure::bindTo example
- Example#352 - Closure::call example
- Example#353 - Generator::getReturn example
- Example#354 - Generator::key example
- Example#355 - Using Generator::send to inject values
- Example#356 - Throwing an exception into a generator
- Example#357 - Basic bindto usage example
- Example#358 - Fetch a page and send POST data
- Example#359 - Ignore redirects but fetch headers and content
- Example#360 - Fetch a page and send POST data
- Example#361 - Detecting which URL we ended up on after redirects
- Example#362 - php://temp/maxmemory
- Example#363 - php://filter/resource=<stream to be filtered>
- Example#364 - php://filter/read=<filter list to apply to read chain>
- Example#365 - php://filter/write=<filter list to apply to write chain>
- Example#366 - php://memory and php://temp are not reusable
- Example#367 - Print data:// contents
- Example#368 - Fetch the media type
- Example#369 - Basic usage
- Example#370 - Opening a stream from an active connection
- Example#371 - This $session variable must be kept available!
- Example#372 - Traversing a RAR archive
- Example#373 - Opening an encrypted file (header encryption)
- Example#374 - Poor variable checking leads to....
- Example#375 - ... A filesystem attack
- Example#376 - More secure file name checking
- Example#377 - More secure file name checking
- Example#378 - Script vulnerable to null bytes
- Example#379 - Correctly validating the input
- Example#380 - Transformarea parolei în hash
- Example#381 - Transformarea parolei în hash utilizând crypt
- Example#382 - Împărțirea rezultatelor în mai multe pagini ... și crearea de superuseri
(PostgreSQL)
- Example#383 - Listarea unor articole ... și a unor parole (orice server de baze de date)
- Example#384 - De la resetarea unei parole ... până la obținerea mai multor privilegii
(orice server de baze de date)
- Example#385 - Atacarea sistemului de operare pe care lucrează baza de date (MSSQL Server)
- Example#386 - O metodă mai sigură de formare a interpelării pentru paginare
- Example#387 - Attacking Variables with a custom HTML page
- Example#388 - Exploiting common debugging variables
- Example#389 - Finding dangerous variables with E_ALL
- Example#390 - Example misuse with register_globals = on
- Example#391 - Example use of sessions with register_globals on or off
- Example#392 - Detecting simple variable poisoning
- Example#393 - Dangerous Variable Usage
- Example#394 - Disabling magic quotes server side
- Example#395 - Disabling magic quotes at runtime
- Example#396 - Ascunderea PHP ca alt limbaj de scripting
- Example#397 - Utilizarea tipurilor necunoscute în calitate de extensii PHP
- Example#398 - Folosirea tipurilor HTML pentru extensiile PHP
- Example#399 - Basic HTTP Authentication example
- Example#400 - Digest HTTP Authentication example
- Example#401 - HTTP Authentication example forcing a new name/password
- Example#402 - A simple XForms search form
- Example#403 - Using an XForm to populate $_POST
- Example#404 - File Upload Form
- Example#405 - Validating file uploads
- Example#406 - Uploading array of files
- Example#407 - Uploading multiple files
- Example#408 - Saving HTTP PUT files
- Example#409 - Getting the title of a remote page
- Example#410 - Storing data on a remote server
- Example#411 - Example showing the difference to the CGI
SAPI:
- Example#412 -
- Example#413 - Printing built in (and loaded) PHP and Zend modules
- Example#414 - Getting a syntax error when using double quotes
- Example#415 - Using single quotes to prevent the shell's variable
substitution
- Example#416 - Using the -B, -R and
-E options to count the number of lines of a
project.
- Example#417 - Using -v to get the SAPI
name and the version of PHP and Zend
- Example#418 - --ini example
- Example#419 - basic --rf usage
- Example#420 - --rc example
- Example#421 - --re example
- Example#422 - --ri example
- Example#423 - Execute PHP script as shell script
- Example#424 - Script intended to be run from command line (script.php)
- Example#425 - Batch file to run a command line PHP script (script.bat)
- Example#426 - Executing code using the interactive shell
- Example#427 - Tab completion
- Example#428 - Setting php.ini settings in the interactive shell
- Example#429 - Starting the web server
- Example#430 - Starting with a specific document root directory
- Example#431 - Using a Router Script
- Example#432 - Checking for CLI Web Server Use
- Example#433 - Handling Unsupported File Types
- Example#434 - Accessing the CLI Web Server From Remote Machines
- Example#435 - Creating a new zval container
- Example#436 - Displaying zval information
- Example#437 - Increasing refcount of a zval
- Example#438 - Decreasing zval refcount
- Example#439 - Creating a array zval
- Example#440 - Adding already existing element to an array
- Example#441 - Removing an element from an array
- Example#442 - Adding the array itself as an element of it self
- Example#443 - Unsetting $a
- Example#444 - Memory usage example
- Example#445 - GC performance influences
- Example#446 - Running the above script
- Example#447 - Recompiling PHP to enable GC benchmarking
- Example#448 - GC statistics
- Example#449 - all_probes.d for tracing all PHP Static Probes with DTrace
- Example#450 - all_probes.stp for tracing all PHP Static Probes with SystemTap
- Example#451 - An apc.rfc1867 example
- Example#452 - A apc_add example
- Example#453 - apc_bin_load example
- Example#454 - A apc_cache_info example
- Example#455 - apc_cas example
- Example#456 - apc_dec example
- Example#457 - apc_define_constants example
- Example#458 - apc_delete_file example
- Example#459 - A apc_delete example
- Example#460 - apc_exists example
- Example#461 - A apc_fetch example
- Example#462 - apc_inc example
- Example#463 - apc_load_constants example
- Example#464 - A apc_sma_info example
- Example#465 - A apc_store example
- Example#466 - A APCIterator::__construct example
- Example#467 - An apc.rfc1867 example
- Example#468 - A apcu_add example
- Example#469 - A apcu_cache_info example
- Example#470 - apcu_cas example
- Example#471 - apcu_dec example
- Example#472 - A apcu_delete example
- Example#473 - An apcu_entry example
- Example#474 - apcu_exists example
- Example#475 - A apcu_fetch example
- Example#476 - apcu_inc example
- Example#477 - A apcu_sma_info example
- Example#478 - A apcu_store example
- Example#479 - A APCUIterator::__construct example
- Example#480 - Typical session using tcplisten
- Example#481 - apd_callstack example
- Example#482 - apd_clunk example
- Example#483 - apd_continue example
- Example#484 - apd_croak example
- Example#485 - apd_dump_function_table example
- Example#486 - apd_dump_persistent_resources example
- Example#487 - apd_dump_regular_resources example
- Example#488 - apd_echo example
- Example#489 - apd_get_active_symbols example
- Example#490 - apd_set_pprof_trace example
- Example#491 - apd_set_session_trace_socket example
- Example#492 - apd_set_session_trace example
- Example#493 - apd_set_session example
- Example#494 - override_function example
- Example#495 - rename_function example
- Example#496 - bcompiler_load_exe example
- Example#497 - bcompiler_load example
- Example#498 - bcompiler_parse_class example
- Example#499 - bcompiler_read example
- Example#500 - bcompiler_write_class example
- Example#501 - bcompiler_write_constant example
- Example#502 - bcompiler_write_exe_footer example
- Example#503 - bcompiler_write_file example
- Example#504 - bcompiler_write_footer example
- Example#505 - bcompiler_write_function example
- Example#506 - bcompiler_write_functions_from_file example
- Example#507 - bcompiler_write_header example
- Example#508 - blenc_encrypt example
- Example#509 - Using error handling in a script
- Example#510 - debug_backtrace example
- Example#511 - debug_print_backtrace example
- Example#512 - An error_clear_last example
- Example#513 - An error_get_last example
- Example#514 - Exemple error_log
- Example#515 - Exemple error_reporting
- Example#516 - Exemplu restore_error_handler
- Example#517 - restore_exception_handler example
- Example#518 - Controlul erorilor cu set_error_handler și trigger_error
- Example#519 - set_exception_handler example
- Example#520 - Exemplu trigger_error
- Example#521 - Getting the data within the PHP application itself (function)
- Example#522 - Example use of gengraph.php
- Example#523 - Listing data via inclued dumps (configuration)
- Example#524 - inclued_get_data example
- Example#525 - Creating large array in a function
- Example#526 - Output Control example
- Example#527 - Output rewrite example
- Example#528 - ob_end_clean example
- Example#529 - ob_end_flush example
- Example#530 - A simple ob_get_clean example
- Example#531 - A simple ob_get_contents example
- Example#532 - ob_get_flush example
- Example#533 - A simple ob_get_length example
- Example#534 - ob_gzhandler example
- Example#535 - ob_list_handlers example
- Example#536 - User defined callback function example
- Example#537 - Creating an uneraseable output buffer in a way compatible with both PHP 5.3 and 5.4
- Example#538 - output_add_rewrite_var example
- Example#539 - output_reset_rewrite_vars example
- Example#540 - assert_options example
- Example#541 - Handle a failed assertion with a custom handler
- Example#542 - Using a custom handler to print a description
- Example#543 - Expectations without a custom exception
- Example#544 - Expectations with a custom exception
- Example#545 - cli_get_process_title example
- Example#546 - cli_set_process_title example
- Example#547 - dl examples
- Example#548 - extension_loaded example
- Example#549 - A gc_enabled example
- Example#550 - get_current_user example
- Example#551 - get_defined_constants Example
- Example#552 - Prints the XML functions
- Example#553 - get_include_path example
- Example#554 - get_included_files example
- Example#555 - get_loaded_extensions Example
- Example#556 - get_magic_quotes_gpc example
- Example#557 - get_magic_quotes_runtime example
- Example#558 - Unfiltered get_resources
- Example#559 - Filtered get_resources
- Example#560 - getenv Example
- Example#561 - getlastmod example
- Example#562 - getopt example: The basics
- Example#563 - getopt example: Introducing long options
- Example#564 - getopt example: Passing multiple options as one
- Example#565 - getopt example: Using optind
- Example#566 - getrusage example
- Example#567 - ini_get_all examples
- Example#568 - Disabling details
- Example#569 - A few ini_get examples
- Example#570 - ini_restore example
- Example#571 - Setting an ini option
- Example#572 - A memory_get_usage example
- Example#573 - php_ini_loaded_file example
- Example#574 - A simple example to list the returned ini files
- Example#575 - php_logo_guid example
- Example#576 - php_sapi_name example
- Example#577 - Some php_uname examples
- Example#578 - A few OS related constant examples
- Example#579 - Prints the general credits
- Example#580 - Prints the core developers and the documentation group
- Example#581 - Printing all the credits
- Example#582 - phpinfo Example
- Example#583 - phpversion example
- Example#584 - PHP_VERSION_ID example and usage
- Example#585 - Setting an environment variable
- Example#586 - restore_include_path example
- Example#587 - set_include_path example
- Example#588 - Adding to the include path
- Example#589 - set_magic_quotes_runtime example
- Example#590 - sys_get_temp_dir example
- Example#591 - version_compare examples
- Example#592 - zend_logo_guid example
- Example#593 - zend_thread_id example
- Example#594 - zend_version example
- Example#595 - Custom Superglobals with runkit.superglobal=_FOO,_BAR in php.ini
- Example#596 - Instantiating a restricted sandbox
- Example#597 - Working with variables in a sandbox
- Example#598 - Calling sandbox functions
- Example#599 - Passing arguments to sandbox functions
- Example#600 - Working with variables in a sandbox
- Example#601 - Accessing parental variables
- Example#602 - A runkit_class_adopt example
- Example#603 - A runkit_class_emancipate example
- Example#604 - A runkit_function_add example
- Example#605 - A runkit_function_copy example
- Example#606 - A runkit_function_redefine example
- Example#607 - runkit_import example
- Example#608 - runkit_method_add example
- Example#609 - runkit_method_copy example
- Example#610 - runkit_method_redefine example
- Example#611 - runkit_method_remove example
- Example#612 - runkit_method_rename example
- Example#613 - runkit_return_value_used example
- Example#614 - Feeding output to a variable
- Example#615 - Enabling and disabling scream at runtime
- Example#616 - uopz_backup example
- Example#617 - uopz_compose example
- Example#618 - uopz_copy example
- Example#619 - uopz_delete example
- Example#620 - uopz_delete class example
- Example#621 - uopz_extend example
- Example#622 - uopz_flags example
- Example#623 - uopz_function example
- Example#624 - uopz_function class example
- Example#625 - uopz_implement example
- Example#626 - uopz_overload example
- Example#627 - uopz_redefine example
- Example#628 - uopz_rename example
- Example#629 - uopz_rename class example
- Example#630 - uopz_restore example
- Example#631 - uopz_undefine example
- Example#632 - Weakref usage example
- Example#633 - WeakRef usage example
- Example#634 - Weakref::acquire example
- Example#635 - Nested acquire/release example
- Example#636 - Weakref::__construct example
- Example#637 - Weakref::release example
- Example#638 - Weakmap usage example
- Example#639 - wincache.ignorelist example
- Example#640 - Authentication configuration for wincache.php
- Example#641 - Enabling WinCache session handler
- Example#642 - Enabling WinCache functions reroutes
- Example#643 - Reroute.ini file content
- Example#644 - A wincache_fcache_fileinfo example
- Example#645 - A wincache_fcache_meminfo example
- Example#646 - Using wincache_lock
- Example#647 - A wincache_ocache_fileinfo example
- Example#648 - A wincache_ocache_meminfo example
- Example#649 - A wincache_refresh_if_changed example
- Example#650 - A wincache_rplist_fileinfo example
- Example#651 - A wincache_rplist_meminfo example
- Example#652 - A wincache_scache_info example
- Example#653 - A wincache_scache_meminfo example
- Example#654 - wincache_ucache_add with key as a string
- Example#655 - wincache_ucache_add with key as an array
- Example#656 - Using wincache_ucache_cas
- Example#657 - using wincache_ucache_clear
- Example#658 - Using wincache_ucache_dec
- Example#659 - Using wincache_ucache_delete with key as a string
- Example#660 - Usingwincache_ucache_delete with key as an array
- Example#661 - Using wincache_ucache_delete with key as an array where some elements cannot be deleted
- Example#662 - Using wincache_ucache_exists
- Example#663 - wincache_ucache_get with key as a string
- Example#664 - wincache_ucache_get with key as an array
- Example#665 - Using wincache_ucache_inc
- Example#666 - Using wincache_ucache_info
- Example#667 - A wincache_ucache_meminfo example
- Example#668 - wincache_ucache_set with key as a string
- Example#669 - wincache_ucache_set with key as an array
- Example#670 - Using wincache_unlock
- Example#671 - Xhprof example with the optional GUI
- Example#672 - xhprof_disable example
- Example#673 - xhprof_enable examples
- Example#674 - xhprof_sample_disable example
- Example#675 - id3_get_frame_long_name example
- Example#676 - id3_get_frame_short_name example
- Example#677 - id3_get_genre_id example
- Example#678 - id3_get_genre_list example
- Example#679 - id3_get_genre_name example
- Example#680 - id3_get_tag example
- Example#681 - id3_get_tag example
- Example#682 - id3_get_version example
- Example#683 - id3_remove_tag example
- Example#684 - id3_set_tag example
- Example#685 - Opens a new MP3 file and read the title
- Example#686 - Reading an OGG/Vorbis file
- Example#687 - Encode an audio file to OGG/Vorbis
- Example#688 - KADM5 extension overview example
- Example#689 - Example of changing principal's password
- Example#690 - Example of principal's creation
- Example#691 - kadm5_delete_principal example
- Example#692 - kadm5_get_policies example
- Example#693 - kadm5_get_principal example
- Example#694 - kadm5_get_principals example
- Example#695 - KADM5 initialization example
- Example#696 - Example of modifying principal
- Example#697 - Using CHAP passwords
- Example#698 - radius_acct_open example
- Example#699 - radius_add_server example
- Example#700 - radius_auth_open example
- Example#701 - radius_create_request example
- Example#702 - radius_cvt_addr example
- Example#703 - radius_cvt_int example
- Example#704 - radius_cvt_string example
- Example#705 - radius_get_attr example
- Example#706 - radius_get_tagged_attr_data example
- Example#707 - radius_get_tagged_attr_tag example
- Example#708 - radius_get_vendor_attr example
- Example#709 - radius_put_attr example
- Example#710 - radius_put_int example
- Example#711 - radius_put_string example
- Example#712 - radius_put_vendor_attr example
- Example#713 - Afișarea la ecran a unui șir de caractere cu o culoare specificată
- Example#714 - Exemplu ncurses_getmouse
- Example#715 - Afișarea la ecran a unui șir de caractere cu o culoare specificată
- Example#716 - Afișarea la ecran a unui șir de caractere cu o culoare specificată
- Example#717 - Exemplu ncurses_mousemask
- Example#718 - Afișarea la ecran a unui șir de caractere cu o culoare specificată
- Example#719 - Newt Usage Example
- Example#720 - A newt_button example
- Example#721 - A newt_draw_root_text example
- Example#722 - A newt_form_add_component example
- Example#723 - A newt_form_add_components example
- Example#724 - A newt_form example
- Example#725 - A newt_get_screen_size example
- Example#726 - A newt_win_entries example
- Example#727 - Readline Callback Interface Example
- Example#728 - readline Example
- Example#729 - Small bzip2 Example
- Example#730 - Compressing data
- Example#731 - Decompressing a String
- Example#732 - bzerror example
- Example#733 - bzopen example
- Example#734 - bzread example
- Example#735 - bzwrite example
- Example#736 - Using an external file
- Example#737 - Using a file within a phar archive
- Example#738 - Converting a phar archive from phar to tar file format
- Example#739 - phar.extract_list usage example
- Example#740 - phar.cache_list usage example
- Example#741 - A Phar::addEmptyDir example
- Example#742 - A Phar::addFile example
- Example#743 - A Phar::addFromString example
- Example#744 - A Phar::apiVersion example
- Example#745 - A Phar::buildFromDirectory example
- Example#746 - A Phar::buildFromIterator with SplFileInfo
- Example#747 - A Phar::buildFromIterator with other iterators
- Example#748 - A Phar::canCompress example
- Example#749 - A Phar::canWrite example
- Example#750 - A Phar::compress example
- Example#751 - A Phar::compressAllFilesBZIP2 example
- Example#752 - A Phar::compressAllFilesGZ example
- Example#753 - A Phar::compressFiles example
- Example#754 - A Phar::__construct example
- Example#755 - A Phar::convertToData example
- Example#756 - A Phar::convertToExecutable example
- Example#757 - A Phar::copy example
- Example#758 - A Phar::count example
- Example#759 - A Phar::createDefaultStub example
- Example#760 - A Phar::decompress example
- Example#761 - A Phar::decompressFiles example
- Example#762 - A Phar::delMetaData example
- Example#763 - A Phar::delete example
- Example#764 - A Phar::extractTo example
- Example#765 - A Phar::getMetadata example
- Example#766 - A Phar::getStub example
- Example#767 - A Phar::hasMetadata example
- Example#768 - A Phar::interceptFileFuncs example
- Example#769 - A Phar::interceptFileFuncs example
- Example#770 - A Phar::isBuffering example
- Example#771 - A Phar::isCompressed example
- Example#772 - A Phar::loadPhar example
- Example#773 - A Phar::mapPhar example
- Example#774 - A Phar::mount example
- Example#775 - A Phar::mungServer example
- Example#776 - A Phar::offsetExists example
- Example#777 - Phar::offsetGet example
- Example#778 - A Phar::offsetSet example
- Example#779 - A Phar::offsetUnset example
- Example#780 - A Phar::running example
- Example#781 - A Phar::setAlias example
- Example#782 - A Phar::setDefaultStub example
- Example#783 - A Phar::setMetadata example
- Example#784 - A Phar::setStub example
- Example#785 - A Phar::startBuffering example
- Example#786 - A Phar::stopBuffering example
- Example#787 - A Phar::uncompressAllFiles example
- Example#788 - A Phar::unlinkArchive example
- Example#789 - A Phar::webPhar example
- Example#790 - A PharData::addEmptyDir example
- Example#791 - A PharData::addFile example
- Example#792 - A PharData::addFromString example
- Example#793 - A PharData::buildFromDirectory example
- Example#794 - A PharData::buildFromIterator with SplFileInfo
- Example#795 - A PharData::buildFromIterator with other iterators
- Example#796 - A PharData::compress example
- Example#797 - A PharData::compressFiles example
- Example#798 - A PharData::__construct example
- Example#799 - A PharData::convertToData example
- Example#800 - A PharData::convertToExecutable example
- Example#801 - A PharData::copy example
- Example#802 - A PharData::decompress example
- Example#803 - A PharData::decompressFiles example
- Example#804 - A PharData::delMetaData example
- Example#805 - A PharData::delete example
- Example#806 - A PharData::extractTo example
- Example#807 - A PharData::offsetSet example
- Example#808 - A PharData::offsetUnset example
- Example#809 - A Phar::setMetadata example
- Example#810 - A PharFileInfo::chmod example
- Example#811 - A PharFileInfo::compress example
- Example#812 - A PharFileInfo::__construct example
- Example#813 - A PharFileInfo::decompress example
- Example#814 - A PharFileInfo::delMetaData example
- Example#815 - A PharFileInfo::getCRC32 example
- Example#816 - A PharFileInfo::getCompressedSize example
- Example#817 - A PharFileInfo::getMetadata example
- Example#818 - A PharFileInfo::getPharFlags example
- Example#819 - A PharFileInfo::isCRCChecked example
- Example#820 - A PharFileInfo::isCompressed example
- Example#821 - A PharFileInfo::isCompressedBZIP2 example
- Example#822 - A PharFileInfo::isCompressedGZ example
- Example#823 - A PharFileInfo::setCompressedBZIP2 example
- Example#824 - A PharFileInfo::setCompressedGZ example
- Example#825 - A PharFileInfo::setMetadata example
- Example#826 - A PharFileInfo::setUncompressed example
- Example#827 - Rar installation
- Example#828 - On-the-fly decompression
- Example#829 - RAR extension filesystem extraction example
- Example#830 - Stil obiect-orientat
- Example#831 - Stil procedural
- Example#832 - Stil obiect-orientat
- Example#833 - Stil procedural
- Example#834 - Stil obiect-orientat
- Example#835 - Stil procedural
- Example#836 - Stil obiect-orientat
- Example#837 - Stil procedural
- Example#838 - Stil obiect-orientat
- Example#839 - Stil procedural
- Example#840 - Stil obiect-orientat
- Example#841 - Stil procedural
- Example#842 - Stil obiect-orientat
- Example#843 - Stil procedural
- Example#844 - Volume Callback
- Example#845 - Stil obiect-orientat
- Example#846 - Stil procedural
- Example#847 - RarArchive::__toString example
- Example#848 - RarEntry::extract example
- Example#849 - How to extract all files in archive:
- Example#850 - RarEntry::getAttr example
- Example#851 - RarEntry::getHostOs example (version >= 2.0.0)
- Example#852 - RarEntry::getHostOs example (version <= 1.0.0)
- Example#853 - RarEntry::getMethod example
- Example#854 - RarEntry::getName example
- Example#855 - RarEntry::getPackedSize example
- Example#856 - RarEntry::getStream example
- Example#857 - RarEntry::getUnpackedSize example
- Example#858 - RarEntry::getVersion example
- Example#859 - RarException::isUsingExceptions example
- Example#860 - RarException::setUsingExceptions example
- Example#861 - Create a Zip archive
- Example#862 - Dump the archive details and listing
- Example#863 - Zip stream wrapper, read an OpenOffice meta info
- Example#864 - Zip Usage Example
- Example#865 - Create a new directory in an archive
- Example#866 - Open and add
- Example#867 - Add an entry to a new archive
- Example#868 - Add file to a directory inside an archive
- Example#869 - ZipArchive::addGlob example
- Example#870 - ZipArchive::addPattern example
- Example#871 - Delete file from archive using its index
- Example#872 - Deleting a file and directory from an archive, using names
- Example#873 - Extract all entries
- Example#874 - Extract two entries
- Example#875 - Dump an archive comment
- Example#876 - Dump an entry comment
- Example#877 - Dump an entry comment
- Example#878 - Extract all entries with Unix rights
- Example#879 - Get the file contents
- Example#880 - Get the file contents
- Example#881 - Convert an image from a zip entry
- Example#882 - ZipArchive::getNameIndex example
- Example#883 - Get the entry contents with fread and store it
- Example#884 - Same as the previous example but with fopen and the zip
stream wrapper
- Example#885 - Stream wrapper and image, can be used with the xml function
as well
- Example#886 - Create an archive and then use it with ZipArchive::locateName
- Example#887 - Open and extract
- Example#888 - Create an archive
- Example#889 - Rename one entry
- Example#890 - Rename one entry
- Example#891 - Create an archive and set a comment
- Example#892 - Open an archive and set a comment for an entry
- Example#893 - Open an archive and set a comment for an entry
- Example#894 - Add files with different compression methods to an archive
- Example#895 - Add files with different compression methods to an archive
- Example#896 - Archive a file, with its Unix rights
- Example#897 - Dump the stat info of an entry
- Example#898 - Dump the stat info of an entry
- Example#899 - Small Zlib Example
- Example#900 - Working with the incremental compression and decompression API as of PHP 7.0.0
- Example#901 - gzclose example
- Example#902 - gzcompress example
- Example#903 - gzdeflate example
- Example#904 - Creating a gzip file
- Example#905 - gzeof example
- Example#906 - gzfile example
- Example#907 - gzgetc example
- Example#908 - gzgets example
- Example#909 - gzgetss example
- Example#910 - gzinflate example
- Example#911 - gzopen Example
- Example#912 - gzpassthru example
- Example#913 - gzread example
- Example#914 - gzseek example
- Example#915 - gzuncompress example
- Example#916 - gzwrite example
- Example#917 - zlib_encode example
- Example#918 - CrackLib example
- Example#919 - random_bytes example
- Example#920 - random_int example
- Example#921 - hash_algos example
- Example#922 - hash_copy example
- Example#923 - example
- Example#924 - Using hash_file
- Example#925 - hash_final example
- Example#926 - hash_hmac_file example
- Example#927 - hash_hmac example
- Example#928 - Incremental hashing example
- Example#929 - hash_pbkdf2 example, basic usage
- Example#930 - hash_update_stream example
- Example#931 - A hash example
- Example#932 - Calculate pre PHP-5.4 tiger hashes with PHP-5.4 and higher
- Example#933 - Encrypt an input value with AES with a 256-bit key under 2.4.x and higher in CBC mode
- Example#934 - mcrypt_create_iv Example
- Example#935 - mcrypt_enc_get_algorithms_name example
- Example#936 - mcrypt_enc_get_modes_name example
- Example#937 - mcrypt_enc_get_supported_key_sizes example
- Example#938 - mcrypt_encrypt Example
- Example#939 - mcrypt_get_block_size example
- Example#940 - mcrypt_get_cipher_name Example
- Example#941 - mcrypt_get_iv_size Example
- Example#942 - mcrypt_get_key_size Example
- Example#943 - mcrypt_list_algorithms Example
- Example#944 - mcrypt_list_modes Example
- Example#945 - mcrypt_module_open Examples
- Example#946 - Using mcrypt_module_open in encryption
- Example#947 - mcrypt_module_self_test example
- Example#948 - mdecrypt_generic Example
- Example#949 - Computes the MD5 digest and hmac and print it out as hex
- Example#950 - Traversing all hashes
- Example#951 - mhash_get_block_size Example
- Example#952 - mhash_get_hash_name Example
- Example#953 - openssl_cipher_iv_length example
- Example#954 - Creating a self-signed-certificate
- Example#955 - openssl_csr_sign example - signing a
CSR (how to implement your own CA)
- Example#956 - openssl_error_string example
- Example#957 - openssl_get_cert_locations example
- Example#958 - openssl_get_cipher_methods example
- Example#959 - openssl_get_md_methods example
- Example#960 - openssl_open example
- Example#961 - openssl_pkcs12_read example
- Example#962 - openssl_pkcs7_decrypt example
- Example#963 - openssl_pkcs7_encrypt example
- Example#964 - openssl_pkcs7_sign example
- Example#965 - openssl_random_pseudo_bytes example
- Example#966 - openssl_seal example
- Example#967 - openssl_sign example
- Example#968 - openssl_sign example
- Example#969 - openssl_spki_export_challenge example
- Example#970 - openssl_spki_export_challenge example from <keygen>
- Example#971 - openssl_spki_export example
- Example#972 - openssl_spki_export example from <keygen>
- Example#973 - openssl_spki_new example
- Example#974 - openssl_spki_verify example
- Example#975 - openssl_spki_verify example from <keygen>
- Example#976 - openssl_verify example
- Example#977 - openssl_verify example
- Example#978 - password_hash example
- Example#979 - password_hash example setting cost manually
- Example#980 - password_hash example setting salt manually
- Example#981 - password_hash example finding a good cost
- Example#982 - Usage of password_needs_rehash
- Example#983 - password_verify example
- Example#984 - DBA example
- Example#985 - Traversing a database
- Example#986 - dba_handlers Example
- Example#987 - dbx_close example
- Example#988 - dbx_compare example
- Example#989 - dbx_connect example
- Example#990 - dbx_error example
- Example#991 - dbx_escape_string example
- Example#992 - How to handle the returned value
- Example#993 - lists each field's name and type
- Example#994 - outputs the content of data property into HTML table
- Example#995 - How to handle UNBUFFERED queries
- Example#996 - How to handle the returned value
- Example#997 - dbx_sort example
- Example#998 - DSN-less connections
- Example#999 - odbc_execute and odbc_prepare example
- Example#1000 - odbc_fetch_into examples
- Example#1001 - odbc_next_result
- Example#1002 - odbc_execute and odbc_prepare example
- Example#1003 - odbc_result examples
- Example#1004 - odbc_setoption examples
- Example#1005 - using PDO::ATTR_DRIVER_NAME
- Example#1006 - Connecting to MySQL
- Example#1007 - Handling connection errors
- Example#1008 - Closing a connection
- Example#1009 - Persistent connections
- Example#1010 - Executing a batch in a transaction
- Example#1011 - Repeated inserts using prepared statements
- Example#1012 - Repeated inserts using prepared statements
- Example#1013 - Fetching data using prepared statements
- Example#1014 - Calling a stored procedure with an output parameter
- Example#1015 - Calling a stored procedure with an input/output parameter
- Example#1016 - Invalid use of placeholder
- Example#1017 - Create a PDO instance and set the error mode
- Example#1018 - Create a PDO instance and set the error mode from the constructor
- Example#1019 - Displaying an image from a database
- Example#1020 - Inserting an image into a database
- Example#1021 - Inserting an image into a database: Oracle
- Example#1022 - Roll back a transaction
- Example#1023 - Committing a basic transaction
- Example#1024 - Committing a DDL transaction
- Example#1025 - Create a PDO instance via driver invocation
- Example#1026 - Create a PDO instance via URI invocation
- Example#1027 - Create a PDO instance using an alias
- Example#1028 - Retrieving an SQLSTATE code
- Example#1029 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
- Example#1030 - Issuing a DELETE statement
- Example#1031 - Retrieving database connection attributes
- Example#1032 - A PDO::getAvailableDrivers example
- Example#1033 - Prepare an SQL statement with named parameters
- Example#1034 - Prepare an SQL statement with question mark parameters
- Example#1035 - Demonstrate PDO::query
- Example#1036 - Quoting a normal string
- Example#1037 - Quoting a dangerous string
- Example#1038 - Quoting a complex string
- Example#1039 - Roll back a transaction
- Example#1040 - Binding result set output to PHP variables
- Example#1041 - Execute a prepared statement with named placeholders
- Example#1042 - Execute a prepared statement with question mark placeholders
- Example#1043 - Call a stored procedure with an INOUT parameter
- Example#1044 - Execute a prepared statement with named placeholders
- Example#1045 - Execute a prepared statement with question mark placeholders
- Example#1046 - A PDOStatement::closeCursor example
- Example#1047 - Counting columns
- Example#1048 - PDOStatement::debugDumpParams example with named parameters
- Example#1049 - PDOStatement::debugDumpParams example with unnamed parameters
- Example#1050 - Retrieving an SQLSTATE code
- Example#1051 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
- Example#1052 - Execute a prepared statement with a bound variable and value
- Example#1053 - Execute a prepared statement with an array of insert values (named parameters)
- Example#1054 - Execute a prepared statement with an array of insert values (placeholders)
- Example#1055 - Execute a prepared statement with question mark placeholders
- Example#1056 - Execute a prepared statement using array for IN clause
- Example#1057 - Fetching rows using different fetch styles
- Example#1058 - Fetching rows with a scrollable cursor
- Example#1059 - Construction order
- Example#1060 - Fetch all remaining rows in a result set
- Example#1061 - Fetching all values of a single column from a result set
- Example#1062 - Grouping all values by a single column
- Example#1063 - Instantiating a class for each result
- Example#1064 - Calling a function for each result
- Example#1065 - Return first column of the next row
- Example#1066 - Retrieving column metadata
- Example#1067 - Fetching multiple rowsets returned from a stored procedure
- Example#1068 - Return the number of deleted rows
- Example#1069 - Counting rows returned by a SELECT statement
- Example#1070 - Setting the fetch mode
- Example#1071 - Insert LOBs in CUBRID PDO
- Example#1072 - Fetch LOBs in CUBRID PDO
- Example#1073 - Insert set in CUBRID PDO with default data type.
- Example#1074 - Specify data type when insert set in CUBRID PDO
- Example#1075 - PDO_CUBRID DSN examples
- Example#1076 - A PDO::cubrid_schema example
- Example#1077 - PDO_DBLIB DSN examples
- Example#1078 - PDO_FIREBIRD DSN example with path
- Example#1079 - PDO_FIREBIRD DSN example with port and path
- Example#1080 - PDO_FIREBIRD DSN example with localhost and path to employee.fdb on Debian system
- Example#1081 - PDO_IBM DSN example using db2cli.ini
- Example#1082 - PDO_IBM DSN example using a connection string
- Example#1083 - PDO_INFORMIX DSN example using odbc.ini
- Example#1084 - PDO_INFORMIX DSN example using a connection string
- Example#1085 - Forcing queries to be buffered in mysql
- Example#1086 - Setting the connection character set to UTF-8 prior to PHP 5.3.6
- Example#1087 - PDO_MYSQL DSN examples
- Example#1088 - PDO_SQLSRV DSN examples
- Example#1089 - PDO_OCI DSN examples
- Example#1090 - PDO_ODBC DSN example (ODBC driver manager)
- Example#1091 - PDO_ODBC DSN example (IBM DB2 uncataloged connection)
- Example#1092 - PDO_ODBC DSN example (Microsoft Access uncataloged connection)
- Example#1093 - PDO_PGSQL DSN examples
- Example#1094 - A PDO::pgsqlLOBCreate example
- Example#1095 - A PDO::pgsqlLOBOpen example
- Example#1096 - A PDO::pgsqlLOBUnlink example
- Example#1097 - PDO_SQLITE DSN examples
- Example#1098 - max_length aggregation function example
- Example#1099 - PDO::sqliteCreateCollation example
- Example#1100 - PDO::sqliteCreateFunction example
- Example#1101 - DSN examples for PDO_4D
- Example#1102 - Basic example with PDO_4D
- Example#1103 - Accessing 4D language from pdo_4d
- Example#1104 - Escaping 4D table names
- Example#1105 - Example of Data Retrieval
- Example#1106 - Example of Data Insertion
- Example#1107 - cubrid_bind example
- Example#1108 - cubrid_bind BLOB/CLOB example
- Example#1109 - cubrid_bind BLOB/CLOB example
- Example#1110 - cubrid_close_prepare example
- Example#1111 - cubrid_close_request example
- Example#1112 - cubrid_col_get example
- Example#1113 - cubrid_col_size example
- Example#1114 - cubrid_column_names example
- Example#1115 - cubrid_column_types example
- Example#1116 - cubrid_commit example
- Example#1117 - cubrid_connect_with_url url without properties example
- Example#1118 - cubrid_connect_with_url url with properties example
- Example#1119 - cubrid_connect example
- Example#1120 - cubrid_current_oid example
- Example#1121 - cubrid_disconnect example
- Example#1122 - cubrid_drop example
- Example#1123 - cubrid_error_code_facility example
- Example#1124 - cubrid_error_code example
- Example#1125 - cubrid_error_msg example
- Example#1126 - cubrid_execute example
- Example#1127 - cubrid_fetch example
- Example#1128 - cubrid_free_result example
- Example#1129 - cubrid_get_charset example
- Example#1130 - cubrid_get_class_name example
- Example#1131 - cubrid_get_client_info example
- Example#1132 - cubrid_get_db_parameter example
- Example#1133 - cubrid_get_query_timeout example
- Example#1134 - cubrid_get_server_info example
- Example#1135 - cubrid_get example
- Example#1136 - cubrid_insert_id example
- Example#1137 - cubrid_is_instance example
- Example#1138 - cubrid_lob_close example
- Example#1139 - cubrid_lob_export example
- Example#1140 - cubrid_lob_get example
- Example#1141 - cubrid_lob_send example
- Example#1142 - cubrid_lob_size example
- Example#1143 - cubrid_lob2_bind example
- Example#1144 - cubrid_lob2_export example
- Example#1145 - cubrid_lob2_export example
- Example#1146 - cubrid_lob2_read example 1
- Example#1147 - cubrid_lob2_read example 2
- Example#1148 - cubrid_lob2_seek64 example
- Example#1149 - cubrid_lob2_seek example
- Example#1150 - cubrid_lob2_write example 1
- Example#1151 - cubrid_lob2_write example 2
- Example#1152 - cubrid_lock_read example
- Example#1153 - cubrid_lock_write example
- Example#1154 - cubrid_move_cursor example
- Example#1155 - cubrid_next_result example
- Example#1156 - cubrid_num_cols example
- Example#1157 - cubrid_num_rows example
- Example#1158 - cubrid_pconnect_with_url url without properties example
- Example#1159 - cubrid_pconnect_with_url url with properties example
- Example#1160 - cubrid_connect example
- Example#1161 - cubrid_prepare example
- Example#1162 - cubrid_put example
- Example#1163 - cubrid_rollback example
- Example#1164 - cubrid_schema example
- Example#1165 - cubrid_seq_drop example
- Example#1166 - cubrid_seq_insert example
- Example#1167 - cubrid_seq_put example
- Example#1168 - cubrid_set_add example
- Example#1169 - cubrid_get_db_parameter example
- Example#1170 - cubrid_set_drop example
- Example#1171 - cubrid_version example
- Example#1172 - cubrid_affected_rows example
- Example#1173 - cubrid_client_encoding example
- Example#1174 - cubrid_close example
- Example#1175 - cubrid_data_seek example
- Example#1176 - cubrid_db_name example
- Example#1177 - cubrid_errno example
- Example#1178 - cubrid_error example
- Example#1179 - cubrid_fetch_array example
- Example#1180 - cubrid_fetch_assoc example
- Example#1181 - cubrid_fetch_field example
- Example#1182 - cubrid_fetch_lengths example
- Example#1183 - cubrid_fetch_object example
- Example#1184 - cubrid_fetch_row example
- Example#1185 - cubrid_field_flags example
- Example#1186 - cubrid_field_len example
- Example#1187 - cubrid_field_name example
- Example#1188 - cubrid_field_seek example
- Example#1189 - cubrid_field_table example
- Example#1190 - cubrid_field_type example
- Example#1191 - cubrid_list_dbs example
- Example#1192 - cubrid_num_fields example
- Example#1193 - cubrid_ping example
- Example#1194 - Invalid Query
- Example#1195 - Valid Query
- Example#1196 - cubrid_real_escape_string example
- Example#1197 - cubrid_result example
- Example#1198 - cubrid_unbuffered_query example
- Example#1199 - cubrid_load_from_glo example
- Example#1200 - cubrid_new_glo example
- Example#1201 - cubrid_save_to_glo example
- Example#1202 - cubrid_send_glo example
- Example#1203 - Inserting a record in a dBase database
- Example#1204 - Closing a dBase database file
- Example#1205 - Creating a dBase database file
- Example#1206 - Showing header information for a dBase database file
- Example#1207 - Listing all the registered members in the database
- Example#1208 - dbase_numfields Example
- Example#1209 - Looping over all the records of the database
- Example#1210 - Opening a dBase database file
- Example#1211 - Emptying a dBase database
- Example#1212 - Updating a record in the database
- Example#1213 - ibase_blob_get example
- Example#1214 - ibase_blob_import example
- Example#1215 - ibase_connect example
- Example#1216 - ibase_execute example
- Example#1217 - ibase_fetch_object example
- Example#1218 - ibase_field_info example
- Example#1219 - ibase_name_result example
- Example#1220 - ibase_num_fields example
- Example#1221 - ibase_query example
- Example#1222 - ibase_set_event_handler example
- Example#1223 - fbsql_close example
- Example#1224 - fbsql_connect example
- Example#1225 - fbsql_create_blob example
- Example#1226 - fbsql_create_clob example
- Example#1227 - fbsql_create_db example
- Example#1228 - fbsql_data_seek example
- Example#1229 - fbsql_create_clob example
- Example#1230 - fbsql_errno Example
- Example#1231 - fbsql_error Example
- Example#1232 - fbsql_fetch_array example
- Example#1233 - fbsql_fetch_assoc example
- Example#1234 - fbsql_fetch_field example
- Example#1235 - fbsql_fetch_object example
- Example#1236 - fbsql_field_name example
- Example#1237 - fbsql_field_type example
- Example#1238 - fbsql_list_dbs example
- Example#1239 - fbsql_list_fields example
- Example#1240 - fbsql_next_result example
- Example#1241 - fbsql_num_rows example
- Example#1242 - fbsql_query example
- Example#1243 - fbsql_query example
- Example#1244 - fbsql_read_blob example
- Example#1245 - fbsql_read_clob example
- Example#1246 - fbsql_table_name example
- Example#1247 - Retrieving the AUTOCOMMIT value for a connection
- Example#1248 - Setting the AUTOCOMMIT value for a connection
- Example#1249 - Binding PHP variables to a prepared statement
- Example#1250 - Calling stored procedures with IN and OUT parameters
- Example#1251 - Inserting a binary large object (BLOB) directly from a file
- Example#1252 - A db2_client_info example
- Example#1253 - Closing a connection
- Example#1254 - Retrieving an SQLSTATE value for a failed connection attempt
- Example#1255 - Retrieving the error message returned by a failed connection attempt
- Example#1256 - Creating a cataloged connection
- Example#1257 - Creating an uncataloged connection
- Example#1258 - Creating a connection with autocommit off by default
- Example#1259 - i5/OS best performance
- Example#1260 - Using trusted context
- Example#1261 - A db2_escape_string example
- Example#1262 - Creating a table with db2_exec
- Example#1263 - Executing a SELECT statement with a scrollable cursor
- Example#1264 - Returning XML data as an SQL ResultSet
- Example#1265 - Performing a "JOIN" with XML data
- Example#1266 - Returning SQL data as part of a larger XML document
- Example#1267 - Preparing and executing an SQL statement with parameter markers
- Example#1268 - Calling a stored procedure with an OUT parameter
- Example#1269 - Returning XML data as an SQL ResultSet
- Example#1270 - Performing a "JOIN" with XML data
- Example#1271 - Returning SQL data as part of a larger XML document
- Example#1272 - Iterating through a forward-only cursor
- Example#1273 - Retrieving specific rows with db2_fetch_array
from a scrollable cursor
- Example#1274 - Iterating through a forward-only cursor
- Example#1275 - Retrieving specific rows with db2_fetch_assoc
from a scrollable cursor
- Example#1276 - Iterating through a forward-only cursor
- Example#1277 - Retrieving specific rows with db2_fetch_both
from a scrollable cursor
- Example#1278 - A db2_fetch_object example
- Example#1279 - Iterating through a result set
- Example#1280 - i5/OS recommended alternatives to db2_fetch_row/db2_result
- Example#1281 - Setting and retrieving parameters through a connection resource
- Example#1282 - A db2_last_insert_id example
- Example#1283 - Iterating through different types of data
- Example#1284 - Calling a stored procedure that returns multiple result sets
- Example#1285 - Retrieving the number of fields in a result set
- Example#1286 - Closing a persistent connection
- Example#1287 - A db2_pconnect example
- Example#1288 - Using trusted context
- Example#1289 - Preparing and executing an SQL statement with parameter markers
- Example#1290 - A db2_result example
- Example#1291 - Rolling back a DELETE statement
- Example#1292 - A db2_server_info example
- Example#1293 - Setting one parameter with a connection resource
- Example#1294 - Setting multiple parameters with a connection resource
- Example#1295 - Setting multiple parameters with an invalid key
- Example#1296 - Setting multiple parameters with an invalid value
- Example#1297 - Setting multiple parameters with a connection resource and the wrong type
- Example#1298 - Setting multiple parameters with the wrong resource
- Example#1299 - Putting it all together
- Example#1300 - i5/OS cursors are read-only
- Example#1301 - Informix affected rows
- Example#1302 - Closing a Informix connection
- Example#1303 - Connect to a Informix database
- Example#1304 - ifx_do Example
- Example#1305 - ifx_errormsg example
- Example#1306 - Informix fetch rows
- Example#1307 - Informix SQL fieldproperties
- Example#1308 - Fieldnames and SQL fieldtypes
- Example#1309 - Retrieve Informix sqlca.sqlerrd[x] values
- Example#1310 - Informix results as HTML table
- Example#1311 - ifx_num_fields Example
- Example#1312 - Show all rows of the "orders" table as a HTML table
- Example#1313 - Insert some values into the "catalog" table
- Example#1314 - Example usage of PassEnv for Ingres
- Example#1315 - Simple Ingres Example
- Example#1316 - ingres_charset - Get the installation character set
- Example#1317 - Open a connection to an Ingres database
- Example#1318 - Get cursor name for a query resource
- Example#1319 - Get the last Ingres error number generated
- Example#1320 - Get a message for the last error generated
- Example#1321 - Get the last SQLSTATE error code generated
- Example#1322 - Escape special characters for use in a query
- Example#1323 - Fetch a row of result into an array
- Example#1324 - Fetch a row into an associative array
- Example#1325 - Fetch a row into an object
- Example#1326 - Get the return value from a procedure call
- Example#1327 - Fetch a row of result into an enumerated array
- Example#1328 - Free a result resource
- Example#1329 - Send a simple select
- Example#1330 - Passing query parameters to ingres_query
- Example#1331 - Inserting a BLOB with parameter types
- Example#1332 - Position the cursor on the 3rd row
- Example#1333 - Set date_format to ISO4
- Example#1334 - Set timezone to HONG-KONG
- Example#1335 - Issue a simple un-buffered select
- Example#1336 - Passing query parameters to ingres_unbuffered_query
- Example#1337 - Inserting a BLOB with parameter types
- Example#1338 - MaxDB extension overview example
- Example#1339 - Example for use of SELECT INTO statements
- Example#1340 - Example fore using database procedures
- Example#1341 - Stil obiect-orientat
- Example#1342 - Stil procedural
- Example#1343 - Stil obiect-orientat
- Example#1344 - Stil procedural
- Example#1345 - Stil obiect-orientat
- Example#1346 - Stil procedural
- Example#1347 - Stil obiect-orientat
- Example#1348 - Stil procedural
- Example#1349 - Stil obiect-orientat
- Example#1350 - Stil procedural
- Example#1351 - maxdb_connect_errno sample
- Example#1352 - maxdb_connect_error sample
- Example#1353 - Stil obiect-orientat
- Example#1354 - Stil procedural
- Example#1355 - Stil obiect-orientat
- Example#1356 - Stil procedural
- Example#1357 - Stil procedural
- Example#1358 - Stil obiect-orientat
- Example#1359 - Stil procedural
- Example#1360 - Stil obiect-orientat
- Example#1361 - Stil procedural
- Example#1362 - Stil obiect-orientat
- Example#1363 - Stil procedural
- Example#1364 - Stil obiect-orientat
- Example#1365 - Stil procedural
- Example#1366 - Stil obiect-orientat
- Example#1367 - Stil procedural
- Example#1368 - Stil obiect-orientat
- Example#1369 - Stil procedural
- Example#1370 - Stil obiect-orientat
- Example#1371 - Stil procedural
- Example#1372 - Stil obiect-orientat
- Example#1373 - Stil procedural
- Example#1374 - Stil obiect-orientat
- Example#1375 - Stil procedural
- Example#1376 - Stil obiect-orientat
- Example#1377 - Stil procedural
- Example#1378 - Stil obiect-orientat
- Example#1379 - Stil procedural
- Example#1380 - Stil obiect-orientat
- Example#1381 - Stil procedural
- Example#1382 - Stil obiect-orientat
- Example#1383 - Stil procedural
- Example#1384 - maxdb_get_client_info
- Example#1385 - maxdb_get_client_version
- Example#1386 - Stil obiect-orientat
- Example#1387 - Stil procedural
- Example#1388 - Stil obiect-orientat
- Example#1389 - Stil procedural
- Example#1390 - Stil obiect-orientat
- Example#1391 - Stil procedural
- Example#1392 - Stil obiect-orientat
- Example#1393 - Stil procedural
- Example#1394 - Stil obiect-orientat
- Example#1395 - Stil procedural
- Example#1396 - Stil obiect-orientat
- Example#1397 - Stil procedural
- Example#1398 - Stil obiect-orientat
- Example#1399 - Stil procedural
- Example#1400 - Stil obiect-orientat
- Example#1401 - Stil procedural
- Example#1402 - Stil obiect-orientat
- Example#1403 - Stil procedural
- Example#1404 - Stil obiect-orientat
- Example#1405 - Stil procedural
- Example#1406 - Stil obiect-orientat
- Example#1407 - Stil procedural
- Example#1408 - Stil obiect-orientat
- Example#1409 - Stil procedural
- Example#1410 - Stil obiect-orientat
- Example#1411 - Stil procedural
- Example#1412 - Stil obiect-orientat
- Example#1413 - Stil procedural
- Example#1414 - Stil obiect-orientat
- Example#1415 - Stil procedural
- Example#1416 - Stil procedural
- Example#1417 - Stil obiect-orientat
- Example#1418 - Stil procedural
- Example#1419 - Stil obiect-orientat
- Example#1420 - Stil procedural
- Example#1421 - Stil obiect-orientat
- Example#1422 - Stil procedural
- Example#1423 - Stil obiect-orientat
- Example#1424 - Stil procedural
- Example#1425 - Stil obiect-orientat
- Example#1426 - Stil procedural
- Example#1427 - Stil obiect-orientat
- Example#1428 - Stil procedural
- Example#1429 - Stil procedural (SELECT INTO)
- Example#1430 - Stil procedural (DB procedure)
- Example#1431 - Stil obiect-orientat (extended syntax)
- Example#1432 - Stil obiect-orientat
- Example#1433 - Stil procedural
- Example#1434 - Stil obiect-orientat
- Example#1435 - Stil procedural
- Example#1436 - Stil obiect-orientat
- Example#1437 - Stil procedural
- Example#1438 - Stil obiect-orientat
- Example#1439 - Stil procedural
- Example#1440 - Stil obiect-orientat
- Example#1441 - Stil procedural
- Example#1442 - Stil obiect-orientat
- Example#1443 - Stil procedural
- Example#1444 - Stil obiect-orientat
- Example#1445 - Stil procedural
- Example#1446 - Stil obiect-orientat
- Example#1447 - Stil procedural
- Example#1448 - Stil obiect-orientat
- Example#1449 - Stil procedural
- Example#1450 - Stil obiect-orientat
- Example#1451 - Stil procedural
- Example#1452 - Stil obiect-orientat
- Example#1453 - Stil procedural
- Example#1454 - Stil obiect-orientat
- Example#1455 - Stil procedural
- Example#1456 - Stil obiect-orientat
- Example#1457 - Stil procedural
- Example#1458 - Stil obiect-orientat
- Example#1459 - Stil procedural
- Example#1460 - Stil obiect-orientat
- Example#1461 - Stil procedural
- Example#1462 -
- Example#1463 -
- Example#1464 -
- Example#1465 -
- Example#1466 -
- Example#1467 -
- Example#1468 -
- Example#1469 -
- Example#1470 -
- Example#1471 -
- Example#1472 -
- Example#1473 -
- Example#1474 -
- Example#1475 -
- Example#1476 -
- Example#1477 - Connection URI read preferences with query string syntax
- Example#1478 - Setting read preferences with array syntax for tag sets
- Example#1479 - Passing a WriteConcern to a write operation
- Example#1480 - Connection string WriteConcerns
- Example#1481 - MongoDB::setWriteConcern and MongoCollection::setWriteConcern
- Example#1482 - Unacknowledged WriteConcern, followed with Acknowledged Write
- Example#1483 - Acknowledged Writes
- Example#1484 - Majority Acknowledged Write
- Example#1485 - Acknowledged and Journaled Write
- Example#1486 - Connect to MongoDB Instance with SSL Encryption
- Example#1487 - Connect to MongoDB Instance with SSL Encryption, verifying it is who we think it is
- Example#1488 - Connect to MongoDB Instance that Requires Client Certificates
- Example#1489 - Authenticating with X.509 certificates
- Example#1490 - Authenticating against the "admin" database
- Example#1491 - Authenticating against normal databases
- Example#1492 - ReplicaSet seed list
- Example#1493 - Wrong replica set name duplication
- Example#1494 - Correct use of two replica set names
- Example#1495 -
- Example#1496 -
- Example#1497 -
- Example#1498 -
- Example#1499 -
- Example#1500 -
- Example#1501 - Inheriting read preferences from the database level down to the cursor
- Example#1502 -
- Example#1503 -
- Example#1504 -
- Example#1505 -
- Example#1506 -
- Example#1507 -
- Example#1508 -
- Example#1509 - MongoClient basic usage
- Example#1510 - MongoClient::close example
- Example#1511 - MongoClient::__construct replica set example
- Example#1512 - Connecting to a domain socket
- Example#1513 - MongoClient::__construct authentication example
- Example#1514 - MongoClient::__construct read preference example
- Example#1515 - MongoClient::__construct options example
- Example#1516 - MongoClient::__construct read preference example
- Example#1517 - MongoClient::getConnections example
- Example#1518 - MongoClient::getReadPreference return value example
- Example#1519 - MongoClient::getWriteConcern return value example
- Example#1520 - MongoClient::killCursor example
- Example#1521 - MongoClient::listDBs example
- Example#1522 - MongoClient::selectCollection example
- Example#1523 - MongoClient::setReadPreference tag set array syntax example
- Example#1524 - MongoClient::setWriteConcern example
- Example#1525 - Selecting a database
- Example#1526 - MongoDB::command "distinct" example
- Example#1527 - MongoDB::command "distinct" example
- Example#1528 - MongoDB::command MapReduce example
- Example#1529 - MongoDB::command "geoNear" example
- Example#1530 - MongoDB::createCollection capped collection example
- Example#1531 - MongoDB::createDBRef example
- Example#1532 - MongoDB::createDBRef example
- Example#1533 - MongoDB::drop example
- Example#1534 - Simple MongoDB::execute example
- Example#1535 - Parameter MongoDB::execute example
- Example#1536 - Scope example
- Example#1537 - MongoDB::getCollectionInfo example
- Example#1538 - MongoDB::getCollectionNames example
- Example#1539 - MongoDB::getDBRef example
- Example#1540 - MongoDB::getGridFS example
- Example#1541 - MongoDB::getReadPreference return value example
- Example#1542 - MongoDB::getWriteConcern return value example
- Example#1543 - MongoDB::lastError NULL error example
- Example#1544 - MongoDB::lastError duplicate key example
- Example#1545 - MongoDB::listCollections example
- Example#1546 - MongoDB::repair example
- Example#1547 - MongoDB::setReadPreference tag set array syntax example
- Example#1548 - MongoDB::setWriteConcern example
- Example#1549 - MongoCollection::aggregate example
- Example#1550 - MongoCollection::aggregate example
- Example#1551 - MongoCollection::aggregate example
- Example#1552 - MongoCollection::aggregate with command options
- Example#1553 - MongoCollection::aggregateCursor example
- Example#1554 - MongoCollection::aggregateCursor
example with different initial batch size
- Example#1555 - MongoCollection::batchInsert example
- Example#1556 - MongoCollection::batchInsert example with
ignoring errors
- Example#1557 - MongoCollection::count example
- Example#1558 - MongoCollection::createDBRef example
- Example#1559 - MongoCollection::createIndex example
- Example#1560 - Geospatial Indexing
- Example#1561 - Drop duplicates example
- Example#1562 - MongoCollection::deleteIndex example
- Example#1563 - MongoCollection::deleteIndexes example
- Example#1564 - MongoCollection::distinct example
- Example#1565 - MongoCollection::distinct example on a embedded document
- Example#1566 - MongoCollection::drop example
- Example#1567 - MongoCollection::ensureIndex example
- Example#1568 - Geospatial Indexing
- Example#1569 - Drop duplicates example
- Example#1570 - MongoCollection::find example
- Example#1571 - MongoCollection::find example
- Example#1572 - MongoCollection::find example using $where
- Example#1573 - MongoCollection::find example using $in
- Example#1574 - Getting results as an array
- Example#1575 - MongoCollection::findAndModify example
- Example#1576 - MongoCollection::findAndModify error handling
- Example#1577 - MongoCollection::findOne document by its id.
- Example#1578 - MongoCollection::findOne document by some condition.
- Example#1579 - MongoCollection::getDBRef example
- Example#1580 - MongoCollection::getIndexInfo example
- Example#1581 - MongoCollection::getName example
- Example#1582 - MongoCollection::getReadPreference return value example
- Example#1583 - MongoCollection::getWriteConcern return value example
- Example#1584 - MongoCollection::group example
- Example#1585 - MongoCollection::group example
- Example#1586 - Passing a keys function
- Example#1587 - MongoCollection::insert _id example
- Example#1588 - MongoCollection::insert acknowledged write example
- Example#1589 - MongoCollection::parallelCollectionScan example
- Example#1590 - MongoCollection::remove with justOne example
- Example#1591 - MongoCollection::save example
- Example#1592 - MongoCollection::setReadPreference tag set array syntax example
- Example#1593 - MongoDB::setWriteConcern example
- Example#1594 - MongoCollection::toIndexString example
- Example#1595 - MongoCollection::__toString example
- Example#1596 - MongoCollection::update
- Example#1597 - MongoCollection::update upsert examples
- Example#1598 - MongoCollection::update multiple example
- Example#1599 - MongoCursor basic usage
- Example#1600 - Iterating over MongoCursor
- Example#1601 - Adding options to MongoCursor
- Example#1602 - Adding a comment with MongoCursor::addOption example
- Example#1603 - MongoCursor::addOption example
- Example#1604 - MongoCursor::awaitData example
- Example#1605 - MongoCursor::batchSize and combinations with
MongoCursor::limit
- Example#1606 - MongoCursor::count example
- Example#1607 - MongoCursor::doQuery example
- Example#1608 - MongoCursor::explain example
- Example#1609 - MongoCursor::getReadPreference return value example
- Example#1610 - MongoCursor::info example
- Example#1611 - MongoCursor::maxTimeMS example
- Example#1612 - MongoCursor::setFlag example
- Example#1613 - MongoCursor::setReadPreference tag set array syntax example
- Example#1614 - MongoCursor::slaveOkay example
- Example#1615 - MongoCursor::sort example
- Example#1616 - MongoCursor::tailable example
- Example#1617 - MongoCursor::timeout example
- Example#1618 - Adding options to MongoCommandCursor
- Example#1619 - MongoCommandCursor::batchSize
- Example#1620 - MongoCommandCursor example
- Example#1621 - MongoCommandCursor::createFromDocument
- Example#1622 - MongoCommandCursor::getReadPreference return value example
- Example#1623 - MongoCommandCursor::info example
- Example#1624 - MongoCommandCursor::rewind
- Example#1625 - MongoCommandCursor::setReadPreference tag set array syntax example
- Example#1626 - MongoCommandCursor::timeout example
- Example#1627 - MongoId::__construct example
- Example#1628 - Parameter example
- Example#1629 - MongoId::__toString example
- Example#1630 - MongoCode::__construct example
- Example#1631 - Using MongoCode with $where
- Example#1632 - MongoCode::__toString example
- Example#1633 - Storing dates with MongoDate
- Example#1634 - MongoDate::__construct example
- Example#1635 - MongoDate::toDateTime example
- Example#1636 - Regular expression pattern
- Example#1637 - MongoRegex::__construct example
- Example#1638 - MongoRegex::__toString example
- Example#1639 -
- Example#1640 - Linking documents
- Example#1641 - Creating MongoDBRef links
- Example#1642 - MongoDBRef::create example
- Example#1643 - MongoCollection::createDBRef example
- Example#1644 - MongoGridFS::findOne example
- Example#1645 - MongoGridFS::storeBytes with additional metadata
- Example#1646 - MongoGridFS::storeFile with additional metadata
- Example#1647 - MongoGridFS::storeUpload HTML form example
- Example#1648 - MongoGridFSFile::getBytes example
- Example#1649 - MongoGridFSFile::getResource example
- Example#1650 - MongoGridFSFile::write example
- Example#1651 - MongoWriteBatch example
- Example#1652 - MongoWriteBatch::add example
- Example#1653 - MongoWriteBatch::add example
- Example#1654 - MongoWriteBatch::add example
- Example#1655 - MongoWriteBatch::add example
- Example#1656 - MongoWriteBatch::add example
- Example#1657 - MongoWriteBatch::add example
- Example#1658 - MongoLog::setCallback example
- Example#1659 - Changing pool size
- Example#1660 - Mongo::setPoolSize example
- Example#1661 - Changing pool size
- Example#1662 - Mongo::setPoolSize example
- Example#1663 - MongoResultException::getDocument example
- Example#1664 - Catching MongoDuplicateKeyException
- Example#1665 - Catching MongoProtocolException
- Example#1666 - MongoDB\Driver\Manager::__construct basic example
- Example#1667 - MongoDB\Driver\Manager::__construct basic examples
- Example#1668 - MongoDB\Driver\Manager::executeBulkWrite example
- Example#1669 - MongoDB\Driver\Manager::executeCommand with a command returning a single result document
- Example#1670 - MongoDB\Driver\Manager::executeCommand with a command returning a cursor
- Example#1671 - MongoDB\Driver\Manager::executeQuery example
- Example#1672 - MongoDB\Driver\Manager::getServers example
- Example#1673 - Composing MongoDB\Driver\Command to provide a helper to create collections
- Example#1674 - MongoDB\Driver\Command::__construct example
- Example#1675 - MongoDB\Driver\Query::__construct example
- Example#1676 - Mixed write operations are grouped by type
- Example#1677 - Ordered write operations causing an error
- Example#1678 - MongoDB\Driver\BulkWrite::__construct example
- Example#1679 - MongoDB\Driver\BulkWrite::count example
- Example#1680 - MongoDB\Driver\BulkWrite::delete example
- Example#1681 - MongoDB\Driver\BulkWrite::insert example
- Example#1682 - MongoDB\Driver\BulkWrite::update example
- Example#1683 - MongoDB\Driver\WriteConcern::bsonSerialize with majority write concern
- Example#1684 - MongoDB\Driver\WriteConcern::bsonSerialize with wtimeout and journal
- Example#1685 - MongoDB\Driver\WriteConcern::__construct example
- Example#1686 - MongoDB\Driver\WriteConcern::getJournal example
- Example#1687 - MongoDB\Driver\WriteConcern::getW example
- Example#1688 - MongoDB\Driver\WriteConcern::getWtimeout example
- Example#1689 - MongoDB\Driver\ReadPreference::bsonSerialize with primary read preference
- Example#1690 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and tag sets
- Example#1691 - MongoDB\Driver\ReadPreference::__construct example
- Example#1692 - MongoDB\Driver\ReadPreference::getMode example
- Example#1693 - MongoDB\Driver\ReadPreference::getTagSets example
- Example#1694 - MongoDB\Driver\ReadConcern::bsonSerialize with empty read concern
- Example#1695 - MongoDB\Driver\ReadConcern::bsonSerialize with local read concern
- Example#1696 - MongoDB\Driver\ReadConcern::__construct example
- Example#1697 - MongoDB\Driver\ReadConcern::getLevel example
- Example#1698 - MongoDB\Driver\Cursor::getId example
- Example#1699 - MongoDB\Driver\Cursor::getServer example
- Example#1700 - MongoDB\Driver\Cursor::isDead example
- Example#1701 - MongoDB\Driver\Cursor::setTypeMap example
- Example#1702 - MongoDB\Driver\Cursor::toArray example
- Example#1703 - MongoDB\Driver\CursorId::__toString example
- Example#1704 - MongoDB\Driver\Server::getHost example
- Example#1705 - MongoDB\Driver\Server::getInfo example
- Example#1706 - MongoDB\Driver\Server::getLatency example
- Example#1707 - MongoDB\Driver\Server::getPort example
- Example#1708 - MongoDB\Driver\WriteConcernError::getCode example
- Example#1709 - MongoDB\Driver\WriteConcernError::getInfo example
- Example#1710 - MongoDB\Driver\WriteConcernError::getMessage example
- Example#1711 - MongoDB\Driver\WriteError::getCode example
- Example#1712 - MongoDB\Driver\WriteError::getIndex example
- Example#1713 - MongoDB\Driver\WriteError::getMessage example
- Example#1714 - MongoDB\Driver\WriteResult::getDeletedCount example
- Example#1715 - MongoDB\Driver\WriteResult::getInsertedCount example
- Example#1716 - MongoDB\Driver\WriteResult::getMatchedCount example
- Example#1717 - MongoDB\Driver\WriteResult::getModifiedCount example
- Example#1718 - MongoDB\Driver\WriteResult::getServer example
- Example#1719 - MongoDB\Driver\WriteResult::getUpsertedCount example
- Example#1720 - MongoDB\Driver\WriteResult::getUpsertedIds example
- Example#1721 - MongoDB\Driver\WriteResult::getWriteConcernError example
- Example#1722 - MongoDB\Driver\WriteResult::getWriteErrors with a single error
- Example#1723 - MongoDB\Driver\WriteResult::getWriteErrors with multiple errors
- Example#1724 - MongoDB\Driver\WriteResult::isAcknowledged with acknowledged write concern
- Example#1725 - MongoDB\Driver\WriteResult::isAcknowledged with unacknowledged write concern
- Example#1726 - MongoDB\BSON\fromJSON example
- Example#1727 - MongoDB\BSON\fromPHP example
- Example#1728 - MongoDB\BSON\toJSON example
- Example#1729 - MongoDB\BSON\toPHP example
- Example#1730 - MongoDB\BSON\Binary::__construct example
- Example#1731 - MongoDB\BSON\Binary::getData example
- Example#1732 - MongoDB\BSON\Binary::getType example
- Example#1733 - MongoDB\BSON\Javascript::__construct example
- Example#1734 - MongoDB\BSON\MaxKey::__construct example
- Example#1735 - MongoDB\BSON\MinKey::__construct example
- Example#1736 - MongoDB\BSON\ObjectID::__construct example
- Example#1737 - MongoDB\BSON\ObjectID::__toString example
- Example#1738 - MongoDB\BSON\Regex::__construct example
- Example#1739 - MongoDB\BSON\Regex::getFlags example
- Example#1740 - MongoDB\BSON\Regex::getPattern example
- Example#1741 - MongoDB\BSON\Regex::__toString example
- Example#1742 - MongoDB\BSON\Timestamp::__construct example
- Example#1743 - MongoDB\BSON\Timestamp::__toString example
- Example#1744 - MongoDB\BSON\UTCDateTime::__construct example
- Example#1745 - MongoDB\BSON\UTCDatetime::toDateTime example
- Example#1746 - MongoDB\BSON\UTCDateTime::__toString example
- Example#1747 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for root document
- Example#1748 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for root document
- Example#1749 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for document field
- Example#1750 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for document field
- Example#1751 - MongoDB\BSON\Unserializable::bsonUnserialize example
- Example#1752 - MongoDB\Driver\Exception\WriteException::getWriteResult example
- Example#1753 - mSQL usage example
- Example#1754 - msql_fetch_array example
- Example#1755 - msql_fetch_object example
- Example#1756 - msql_fetch_row example
- Example#1757 - msql_query example
- Example#1758 - mssql_bind example
- Example#1759 - mssql_close example
- Example#1760 - mssql_connect example
- Example#1761 - mssql_data_seek example
- Example#1762 - mssql_execute example
- Example#1763 - mssql_fetch_array example
- Example#1764 - mssql_fetch_assoc example
- Example#1765 - mssql_fetch_batch example
- Example#1766 - mssql_fetch_field example
- Example#1767 - mssql_fetch_object example
- Example#1768 - mssql_fetch_row example
- Example#1769 - mssql_field_length example
- Example#1770 - mssql_field_name example
- Example#1771 - Using mssql_field_seek on the example for mssql_fetch_field
- Example#1772 - mssql_field_type example
- Example#1773 - mssql_free_result example
- Example#1774 - mssql_free_statement example
- Example#1775 - mssql_get_last_message example
- Example#1776 - mssql_guid_string example
- Example#1777 - mssql_init example
- Example#1778 - mssql_min_error_severity example
- Example#1779 - mssql_min_message_severity example
- Example#1780 - mssql_next_result example
- Example#1781 - mssql_num_fields example
- Example#1782 - mssql_num_rows example
- Example#1783 - mssql_pconnect using the new_link parameter
- Example#1784 - mssql_query example
- Example#1785 - mssql_result example
- Example#1786 - Faster alternative to above example
- Example#1787 - mssql_rows_affected example
- Example#1788 - mssql_select_db example
- Example#1789 - Escaping the database name with square brackets
- Example#1790 - Comparing the three MySQL APIs
- Example#1791 - Configure commands for using mysqlnd or libmysqlclient
- Example#1792 - Unbuffered query example: mysqli
- Example#1793 - Unbuffered query example: pdo_mysql
- Example#1794 - Unbuffered query example: mysql
- Example#1795 - Problems with setting the character set with SQL
- Example#1796 - Setting the character set example: mysqli
- Example#1797 - Setting the character set example: pdo_mysql
- Example#1798 - Setting the character set example: mysql
- Example#1799 - Easy migration from the old mysql extension
- Example#1800 - Object-oriented and procedural interface
- Example#1801 - Bad coding style
- Example#1802 - Special meaning of localhost
- Example#1803 - Setting defaults
- Example#1804 - Connecting to MySQL
- Example#1805 - Navigation through buffered results
- Example#1806 - Navigation through unbuffered results
- Example#1807 - Text protocol returns strings by default
- Example#1808 - Native data types with mysqlnd and connection option
- Example#1809 - First stage: prepare
- Example#1810 - Second stage: bind and execute
- Example#1811 - INSERT prepared once, executed multiple times
- Example#1812 - Less round trips using multi-INSERT SQL
- Example#1813 - Native datatypes
- Example#1814 - Output variable binding
- Example#1815 - Using mysqli_result to fetch results
- Example#1816 - Buffered result set for flexible read out
- Example#1817 - Calling a stored procedure
- Example#1818 - Using session variables
- Example#1819 - Fetching results from stored procedures
- Example#1820 - Stored Procedures and Prepared Statements
- Example#1821 - Stored Procedures and Prepared Statements using bind API
- Example#1822 - Multiple Statements
- Example#1823 - SQL Injection
- Example#1824 - Setting auto commit mode with SQL and through the API
- Example#1825 - Commit and rollback
- Example#1826 - Accessing result set meta data
- Example#1827 - Prepared statements metadata
- Example#1828 - MySQLi extension overview example
- Example#1829 - $mysqli->affected_rows example
- Example#1830 - mysqli::autocommit example
- Example#1831 - $mysqli->begin_transaction example
- Example#1832 - mysqli::change_user example
- Example#1833 - mysqli::character_set_name example
- Example#1834 - mysqli_get_client_info
- Example#1835 - mysqli_get_client_version
- Example#1836 - mysqli::commit example
- Example#1837 - $mysqli->connect_errno example
- Example#1838 - $mysqli->connect_error example
- Example#1839 - mysqli::__construct example
- Example#1840 - Generating a Trace File
- Example#1841 - $mysqli->errno example
- Example#1842 - $mysqli->error_list example
- Example#1843 - $mysqli->error example
- Example#1844 - $mysqli->field_count example
- Example#1845 - mysqli::get_charset example
- Example#1846 - mysqli_get_client_info
- Example#1847 - A mysqli_get_client_stats example
- Example#1848 - mysqli_get_client_version
- Example#1849 - A mysqli_get_connection_stats example
- Example#1850 - $mysqli->host_info example
- Example#1851 - $mysqli->protocol_version example
- Example#1852 - $mysqli->server_info example
- Example#1853 - $mysqli->server_version example
- Example#1854 - $mysqli->info example
- Example#1855 - $mysqli->insert_id example
- Example#1856 - mysqli::kill example
- Example#1857 - mysqli::multi_query example
- Example#1858 - mysqli::ping example
- Example#1859 - A mysqli_poll example
- Example#1860 - mysqli::prepare example
- Example#1861 - mysqli::query example
- Example#1862 - mysqli::real_connect example
- Example#1863 - mysqli::real_escape_string example
- Example#1864 - mysqli::rollback example
- Example#1865 - mysqli::select_db example
- Example#1866 - mysqli::set_charset example
- Example#1867 - mysqli::set_local_infile_handler example
- Example#1868 - $mysqli->sqlstate example
- Example#1869 - mysqli::stat example
- Example#1870 - $mysqli->thread_id example
- Example#1871 - mysqli::use_result example
- Example#1872 - $mysqli->warning_count example
- Example#1873 - Stil obiect-orientat
- Example#1874 - Stil procedural
- Example#1875 - Stil obiect-orientat
- Example#1876 - Stil procedural
- Example#1877 - Stil obiect-orientat
- Example#1878 - Stil procedural
- Example#1879 - Stil obiect-orientat
- Example#1880 - Stil procedural
- Example#1881 - Stil obiect-orientat
- Example#1882 - Stil procedural
- Example#1883 - Stil obiect-orientat
- Example#1884 - Stil procedural
- Example#1885 - Stil obiect-orientat
- Example#1886 - Stil procedural
- Example#1887 - Stil obiect-orientat
- Example#1888 - Stil procedural
- Example#1889 - Stil obiect-orientat
- Example#1890 - Stil procedural
- Example#1891 - Stil obiect-orientat
- Example#1892 - Stil procedural
- Example#1893 - Stil obiect-orientat
- Example#1894 - Stil procedural
- Example#1895 - Stil obiect-orientat
- Example#1896 - Stil procedural
- Example#1897 - Stil obiect-orientat
- Example#1898 - Stil procedural
- Example#1899 - Stil obiect-orientat
- Example#1900 - Stil procedural
- Example#1901 - Stil obiect-orientat
- Example#1902 - Stil obiect-orientat
- Example#1903 - Stil procedural
- Example#1904 - Stil obiect-orientat
- Example#1905 - Stil procedural
- Example#1906 - Stil obiect-orientat
- Example#1907 - Stil procedural
- Example#1908 - Stil obiect-orientat
- Example#1909 - Stil procedural
- Example#1910 - Stil obiect-orientat
- Example#1911 - Stil procedural
- Example#1912 - Stil obiect-orientat
- Example#1913 - Stil procedural
- Example#1914 - A mysqli_result example comparing iterator usage
- Example#1915 - Stil obiect-orientat
- Example#1916 - Stil procedural
- Example#1917 - Stil obiect-orientat
- Example#1918 - Stil procedural
- Example#1919 - Stil obiect-orientat
- Example#1920 - Stil procedural
- Example#1921 - Stil obiect-orientat
- Example#1922 - Stil procedural
- Example#1923 - Stil obiect-orientat
- Example#1924 - Stil procedural
- Example#1925 - Stil obiect-orientat
- Example#1926 - Stil procedural
- Example#1927 - Stil obiect-orientat
- Example#1928 - Stil procedural
- Example#1929 - Stil obiect-orientat
- Example#1930 - Stil procedural
- Example#1931 - Stil obiect-orientat
- Example#1932 - Stil procedural
- Example#1933 - Stil obiect-orientat
- Example#1934 - Stil procedural
- Example#1935 - Exemplu mysqli_connect
- Example#1936 - Exemplu general de utilizare a extensiei MySQL
- Example#1937 - Exemplu mysql_affected_rows
- Example#1938 - Exemplu mysql_affected_rows utilizând tranzacții
- Example#1939 - Exemplu mysql_client_encoding
- Example#1940 - Exemplu mysql_close
- Example#1941 - Exemplu mysql_connect
- Example#1942 - Exemplu mysql_connect utilizând sintaxa hostname:port
- Example#1943 - Exemplu mysql_connect utilizând sintaxa ":/calea/spre/socket"
- Example#1944 - Un exemplu alternativ mysql_create_db
- Example#1945 - mysql_data_seek example
- Example#1946 - mysql_db_name example
- Example#1947 - mysql_db_query alternative example
- Example#1948 - mysql_drop_db alternative example
- Example#1949 - mysql_errno example
- Example#1950 - mysql_error example
- Example#1951 - exemplu de uz al functiei mysql_escape_string
- Example#1952 - Query with aliased duplicate field names
- Example#1953 - mysql_fetch_array with MYSQL_NUM
- Example#1954 - mysql_fetch_array with MYSQL_ASSOC
- Example#1955 - mysql_fetch_array with MYSQL_BOTH
- Example#1956 - An expanded mysql_fetch_assoc example
- Example#1957 - mysql_fetch_field example
- Example#1958 - A mysql_fetch_lengths example
- Example#1959 - mysql_fetch_object example
- Example#1960 - mysql_fetch_object example
- Example#1961 - Fetching one row with mysql_fetch_row
- Example#1962 - A mysql_field_flags example
- Example#1963 - mysql_field_len example
- Example#1964 - mysql_field_name example
- Example#1965 - A mysql_field_table example
- Example#1966 - mysql_field_type example
- Example#1967 - A mysql_free_result example
- Example#1968 - Exemplu mysql_get_client_info
- Example#1969 - mysql_get_host_info example
- Example#1970 - mysql_get_proto_info example
- Example#1971 - mysql_get_server_info example
- Example#1972 - Relevant MySQL Statements
- Example#1973 - mysql_insert_id example
- Example#1974 - mysql_list_dbs example
- Example#1975 - Alternate to deprecated mysql_list_fields
- Example#1976 - mysql_list_processes example
- Example#1977 - mysql_list_tables alternative example
- Example#1978 - A mysql_num_fields example
- Example#1979 - mysql_num_rows example
- Example#1980 - A mysql_ping example
- Example#1981 - Invalid Query
- Example#1982 - Valid Query
- Example#1983 - Simple mysql_real_escape_string example
- Example#1984 - mysql_real_escape_string requires a connection example
- Example#1985 - An example SQL Injection Attack
- Example#1986 - mysql_result example
- Example#1987 - mysql_select_db example
- Example#1988 - mysql_stat example
- Example#1989 - Alternative mysql_stat example
- Example#1990 - mysql_tablename example
- Example#1991 - mysql_thread_id example
- Example#1992 - Enabling the plugin (php.ini)
- Example#1993 - Minimal plugin-specific configuration file (mysqlnd_ms_plugin.ini)
- Example#1994 - Recommended minimal plugin-specific config (mysqlnd_ms_plugin.ini)
- Example#1995 - Using one server as a master and as a slave (testing only!)
- Example#1996 - Plugin specific configuration file (mysqlnd_ms_plugin.ini)
- Example#1997 - Opening a load balanced connection
- Example#1998 - Executing statements
- Example#1999 - Plugin config with one slave and one master
- Example#2000 - Pitfall: connection state and SQL user variables
- Example#2001 - Plugin config with one slave and one master
- Example#2002 - SQL hints to prevent connection switches
- Example#2003 - Fighting replication lag
- Example#2004 - Table creation on a slave
- Example#2005 - Plugin config with one slave and one master
- Example#2006 - Using SQL hints for transactions
- Example#2007 - Transaction aware load balancing: trx_stickiness setting
- Example#2008 - Transaction aware
- Example#2009 - General pattern for XA transactions
- Example#2010 - Local and global transactions are mutually exclusive
- Example#2011 - Transaction coordinator state store
- Example#2012 - Session consistency: read your writes
- Example#2013 - Requesting session consistency
- Example#2014 - Maximum age/slave lag
- Example#2015 - Limiting slave lag
- Example#2016 - Fail over not set
- Example#2017 - No slave within time limit
- Example#2018 - Create counter table on master
- Example#2019 - Plugin config: SQL for client-side GTID injection
- Example#2020 - Transparent global transaction ID injection
- Example#2021 - Plugin config: SQL for fetching GTID
- Example#2022 - Obtaining GTID after injection
- Example#2023 - Plugin config: Checking for a certain GTID
- Example#2024 - Session consistency service level and GTID combined
- Example#2025 - Plugin config: using MySQL 5.6.5-m8 built-in GTID feature
- Example#2026 - Recap: quality of service to request read your writes
- Example#2027 - Plugin config: no special entries for caching
- Example#2028 - Caching a slave request
- Example#2029 - Read your writes and caching combined
- Example#2030 - Manual failover, automatic optional
- Example#2031 - Manual failover
- Example#2032 - Cluster node groups
- Example#2033 - Manual partitioning using SQL hints
- Example#2034 - Plugin config: Fabric hosts instead of MySQL servers
- Example#2035 - Manual partitioning using SQL hints
- Example#2036 - Provoking a connection error
- Example#2037 - Connection error on query execution
- Example#2038 - Provoking a connection error
- Example#2039 - Most basic failover
- Example#2040 - Provoking a transient error
- Example#2041 - Transient error retry loop
- Example#2042 - Enabling the plugin (php.ini)
- Example#2043 - Basic plugin configuration (mysqlnd_ms_plugin.ini) for MySQL Replication
- Example#2044 - Multiple primaries - multi master (php.ini)
- Example#2045 - Primary copy with multiple primaries and paritioning
- Example#2046 - Multiple primaries - multi master (php.ini)
- Example#2047 - Synchronous update anywhere cluster
- Example#2048 - General pattern for XA transactions
- Example#2049 - Converting a PHP array (hash) into JSON format
- Example#2050 - Using section names example
- Example#2051 - List of anonymous slaves
- Example#2052 - Master list using symbolic names
- Example#2053 - Keywords to configure a server
- Example#2054 - New roundrobin filter, old functionality
- Example#2055 - The user filter replaces mysqlnd_ms_set_user_pick_server
- Example#2056 - Common error message in case of configuration file issues (upto version 1.5.0)
- Example#2057 - Improved configuration file validation since 1.5.0
- Example#2058 - Possibly more precise error due to mysqlnd_ms.force_config_usage=1
- Example#2059 - Minimum pluging configuration for use with MySQL Fabric
- Example#2060 - Optional timeout for communication with Fabric
- Example#2061 - Warnings about the violation of transaction boundaries
- Example#2062 - Invalid filter sequence
- Example#2063 - Random load balancing with random filter
- Example#2064 - Random once load balancing with random filter
- Example#2065 - Referencing error
- Example#2066 - Assigning a weight for load balancing
- Example#2067 - roundrobin filter
- Example#2068 - Setting a callback
- Example#2069 - Using a callback
- Example#2070 - Returning random masters and slaves
- Example#2071 - Manual partitioning
- Example#2072 - Global limit on slave lag
- Example#2073 - Optional master failover when failing to connect to slave (PECL/mysqlnd_ms < 1.4.0)
- Example#2074 - New syntax since 1.4.0
- Example#2075 - Disabling lazy connection
- Example#2076 - String escaping on a lazy connection handle
- Example#2077 - Master on write for consistent reads
- Example#2078 - Using master to execute transactions
- Example#2079 - No automatic failover, error handling pitfall
- Example#2080 - Retry loop for transient errors
- Example#2081 - SQL definition for the MySQL state store transaction table
- Example#2082 - SQL definition for the MySQL state store transaction table
- Example#2083 - SQL definition for the MySQL state store garbage collection table
- Example#2084 - Using section names example
- Example#2085 - List-like syntax
- Example#2086 - Verify plugin activity in a non-threaded deployment model
- Example#2087 - Recording statistics during shutdown
- Example#2088 - Example demonstrating the usage of mysqlnd_ms constants
- Example#2089 - mysqlnd_ms_dump_servers example
- Example#2090 - mysqlnd_ms_get_last_gtid example
- Example#2091 - mysqlnd_ms_get_last_used_connection example
- Example#2092 - mysqlnd_ms_get_stats example
- Example#2093 - mysqlnd_ms_match_wild example
- Example#2094 - mysqlnd_ms_query_is_select example
- Example#2095 - mysqlnd_ms_set_qos example
- Example#2096 - mysqlnd_ms_set_user_pick_server example
- Example#2097 - Enabling the plugin (php.ini)
- Example#2098 - Using the MYSQLND_QC_ENABLE_SWITCH SQL hint
- Example#2099 - Using the MYSQLND_QC_DISABLE_SWITCH SQL hint
- Example#2100 - Example showing which type of statements are not cached
- Example#2101 - Enabling caching for all statements using the mysqlnd_qc.cache_no_table ini setting
- Example#2102 - Setting the TTL with the mysqlnd_qc.ttl ini setting
- Example#2103 - Setting TTL with SQL hints
- Example#2104 - Setting a callback with mysqlnd_qc_set_is_select
- Example#2105 - Enabling the slam defense mechanism
- Example#2106 - Collecting a query trace
- Example#2107 - Setting the backtrace depth with the mysqlnd_qc.query_trace_bt_depth ini setting
- Example#2108 - Collecting statistics data with the mysqlnd_qc.time_statistics ini setting
- Example#2109 - Example mysqlnd_qc_get_cache_info usage
- Example#2110 - Example mysqlnd_qc_get_normalized_query_trace_log usage
- Example#2111 - Using a user-defined storage handler
- Example#2112 - Using SQL hint constants
- Example#2113 - Example mysqlnd_qc_set_cache_condition usage
- Example#2114 - mysqlnd_qc_get_available_handlers example
- Example#2115 - mysqlnd_qc_get_cache_info example
- Example#2116 - mysqlnd_qc_get_core_stats example
- Example#2117 - mysqlnd_qc_get_normalized_query_trace_log example
- Example#2118 - mysqlnd_qc_get_query_trace_log example
- Example#2119 - mysqlnd_qc_set_cache_condition example
- Example#2120 - mysqlnd_qc_set_is_select example
- Example#2121 - mysqlnd_qc_set_storage_handler example
- Example#2122 - Enabling the plugin (php.ini)
- Example#2123 - Pseudo-code: what a built-in class does
- Example#2124 - Installing a proxy
- Example#2125 - Proxy registration, mysqlnd_uh.enable=1
- Example#2126 - Proxy installation disabled
- Example#2127 - Connection proxy
- Example#2128 - Prepared statement proxy
- Example#2129 - Basic Monitoring
- Example#2130 - MysqlndUhConnection::changeUser example
- Example#2131 - MysqlndUhConnection::charsetName example
- Example#2132 - MysqlndUhConnection::close example
- Example#2133 - MysqlndUhConnection::connect example
- Example#2134 - MysqlndUhConnection::endPSession example
- Example#2135 - MysqlndUhConnection::escapeString example
- Example#2136 - MysqlndUhConnection::getAffectedRows example
- Example#2137 - MysqlndUhConnection::getErrorNumber example
- Example#2138 - MysqlndUhConnection::getErrorString example
- Example#2139 - MysqlndUhConnection::getFieldCount example
- Example#2140 - MysqlndUhConnection::getHostInformation example
- Example#2141 - MysqlndUhConnection::getLastInsertId example
- Example#2142 - MysqlndUhConnection::getLastMessage example
- Example#2143 - MysqlndUhConnection::getProtocolInformation example
- Example#2144 - MysqlndUhConnection::getServerInformation example
- Example#2145 - MysqlndUhConnection::getServerStatistics example
- Example#2146 - MysqlndUhConnection::getServerVersion example
- Example#2147 - MysqlndUhConnection::getSqlstate example
- Example#2148 - MysqlndUhConnection::getStatistics example
- Example#2149 - MysqlndUhConnection::getThreadId example
- Example#2150 - MysqlndUhConnection::getWarningCount example
- Example#2151 - MysqlndUhConnection::init example
- Example#2152 - MysqlndUhConnection::kill example
- Example#2153 - MysqlndUhConnection::listFields example
- Example#2154 - MysqlndUhConnection::listMethod example
- Example#2155 - MysqlndUhConnection::moreResults example
- Example#2156 - MysqlndUhConnection::nextResult example
- Example#2157 - MysqlndUhConnection::ping example
- Example#2158 - MysqlndUhConnection::query example
- Example#2159 - MysqlndUhConnection::queryReadResultsetHeader example
- Example#2160 - MysqlndUhConnection::reapQuery example
- Example#2161 - MysqlndUhConnection::refreshServer example
- Example#2162 - MysqlndUhConnection::restartPSession example
- Example#2163 - MysqlndUhConnection::selectDb example
- Example#2164 - MysqlndUhConnection::sendClose example
- Example#2165 - MysqlndUhConnection::sendQuery example
- Example#2166 - MysqlndUhConnection::serverDumpDebugInformation example
- Example#2167 - MysqlndUhConnection::setAutocommit example
- Example#2168 - MysqlndUhConnection::setCharset example
- Example#2169 - MysqlndUhConnection::setClientOption example
- Example#2170 - MysqlndUhConnection::setServerOption example
- Example#2171 - MysqlndUhConnection::simpleCommand example
- Example#2172 - MysqlndUhConnection::simpleCommandHandleResponse example
- Example#2173 - MysqlndUhConnection::sslSet example
- Example#2174 - MysqlndUhConnection::stmtInit example
- Example#2175 - MysqlndUhConnection::storeResult example
- Example#2176 - MysqlndUhConnection::txCommit example
- Example#2177 - MysqlndUhConnection::txRollback example
- Example#2178 - MysqlndUhConnection::useResult example
- Example#2179 - MysqlndUhPreparedStatement::execute example
- Example#2180 - MysqlndUhPreparedStatement::prepare example
- Example#2181 - mysqlnd_uh_convert_to_mysqlnd example
- Example#2182 - mysqlnd_uh_set_connection_proxy example
- Example#2183 - Enabling the plugin (php.ini)
- Example#2184 - SQL table used for the Quickstart
- Example#2185 - Basic example.
- Example#2186 - mysqlnd_memcache_get_config example
- Example#2187 - mysqlnd_memcache_set example with
var_dump as a simple debugging callback.
- Example#2188 - Basic query
- Example#2189 - Inserting with bind variables
- Example#2190 - Binding in the WHERE clause of a query
- Example#2191 - Inserting and fetching a CLOB
- Example#2192 - Using a PL/SQL stored function
- Example#2193 - Using a PL/SQL stored procedure
- Example#2194 - Calling a PL/SQL function that returns a REF CURSOR
- Example#2195 - user_oci8_probes.d for tracing all user-level PHP OCI8 Static Probes with DTrace
- Example#2196 - oci_bind_array_by_name example
- Example#2197 - Inserting data with oci_bind_by_name
- Example#2198 - Binding once for multiple executions
- Example#2199 - Binding with a foreach loop
- Example#2200 - Binding in a WHERE clause
- Example#2201 - Binding with a LIKE clause
- Example#2202 - Binding with REGEXP_LIKE
- Example#2203 - Binding Multiple Values in an IN Clause
- Example#2204 - Binding a ROWID returned by a query
- Example#2205 - Binding a ROWID on INSERT
- Example#2206 - Binding for a PL/SQL stored function
- Example#2207 - Binding parameters for a PL/SQL stored procedure
- Example#2208 - Binding a CLOB column
- Example#2209 - Binding a PL/SQL BOOLEAN
- Example#2210 - oci_client_version example
- Example#2211 - Closing a connection
- Example#2212 - Database connections are not closed until all references are closed
- Example#2213 - Closing a connection opened more than once
- Example#2214 - Connections are closed when variables go out of scope
- Example#2215 - oci_commit example
- Example#2216 - Basic oci_connect using Easy Connect syntax
- Example#2217 - Basic oci_connect using a Network Connect name
- Example#2218 - oci_connect with an explicit character set
- Example#2219 - Using multiple calls to oci_connect
- Example#2220 - oci_define_by_name example
- Example#2221 - oci_define_by_name with case sensitive column names
- Example#2222 - oci_define_by_name with LOB columns
- Example#2223 - oci_define_by_name with an explicit type
- Example#2224 - Displaying the Oracle error message after a connection error
- Example#2225 - Displaying the Oracle error message after a parsing error
- Example#2226 - Displaying the Oracle error message, the problematic statement,
and the position of the problem of an execution error
- Example#2227 - oci_execute for queries
- Example#2228 - oci_execute without specifying a mode example
- Example#2229 - oci_execute with OCI_NO_AUTO_COMMIT example
- Example#2230 - oci_execute with different commit modes example
- Example#2231 - oci_execute with
OCI_DESCRIBE_ONLY example
- Example#2232 - oci_fetch_all example
- Example#2233 - oci_fetch_all example with OCI_FETCHSTATEMENT_BY_ROW
- Example#2234 - oci_fetch_all with OCI_NUM
- Example#2235 - oci_fetch_array with OCI_BOTH
- Example#2236 - oci_fetch_array with OCI_NUM
- Example#2237 - oci_fetch_array with OCI_ASSOC
- Example#2238 - oci_fetch_array with OCI_RETURN_NULLS
- Example#2239 - oci_fetch_array with OCI_RETURN_LOBS
- Example#2240 - oci_fetch_array with case sensitive column names
- Example#2241 - oci_fetch_array with columns having duplicate names
- Example#2242 - oci_fetch_array with DATE columns
- Example#2243 - oci_fetch_array with REF CURSOR
- Example#2244 - Pagination with oci_fetch_array using a LIMIT-like query
- Example#2245 - oci_fetch_array with Oracle Database 12c Implicit Result Sets
- Example#2246 - oci_fetch_assoc Example
- Example#2247 - oci_fetch_object example
- Example#2248 - oci_fetch_object with case sensitive column names
- Example#2249 - oci_fetch_object with LOBs
- Example#2250 - oci_fetch_row Example
- Example#2251 - oci_fetch with defined variables
- Example#2252 - oci_fetch with oci_result
- Example#2253 - oci_field_name example
- Example#2254 - oci_field_name example
- Example#2255 - oci_field_precision Example
- Example#2256 - oci_field_scale Example
- Example#2257 - oci_field_size example
- Example#2258 - oci_field_type_raw Example
- Example#2259 - oci_field_type example
- Example#2260 - Fetching Implicit Result Sets in a loop
- Example#2261 - Getting child statement handles individually
- Example#2262 - Explicitly setting the Prefetch Count
- Example#2263 - Implicit Result Set example without using oci_get_implicit_resultset
- Example#2264 - oci_new_connect example
- Example#2265 - Binding a REF CURSOR in an Oracle stored procedure call
- Example#2266 - oci_new_descriptor example
- Example#2267 - oci_new_descriptor example
- Example#2268 - oci_num_fields example
- Example#2269 - oci_num_rows example
- Example#2270 - oci_parse example for SQL statements
- Example#2271 - oci_parse example for PL/SQL statements
- Example#2272 - oci_password_change example changing the password of an already connected user
- Example#2273 - oci_password_change example of connecting and changing the password in one step
- Example#2274 - Basic oci_pconnect Example using Easy Connect syntax
- Example#2275 - oci_fetch with oci_result
- Example#2276 - oci_rollback example
- Example#2277 - Rolling back to a SAVEPOINT example
- Example#2278 - oci_server_version example
- Example#2279 - Setting the action
- Example#2280 - Setting the client identifier to the application user
- Example#2281 - Setting the client information
- Example#2282 - Two scripts can use different versions of myfunc() at the same time
- Example#2283 - Setting the module name
- Example#2284 - Changing the default prefetch value for a query
- Example#2285 - Changing the default prefetch for a REF CURSOR fetch
- Example#2286 - Setting the prefetch value when passing a REF CURSOR back to Oracle
- Example#2287 - oci_statement_type example
- Example#2288 - Creating a Paradox database with two fields
- Example#2289 - Turn a paradox date into a human readable form
- Example#2290 - Set the date/time fields in a paradox database to the current
date/time
- Example#2291 - Opening a Paradox database
- Example#2292 - Opening a Paradox database
- Example#2293 - Turn a paradox timestamp into a human readable form
- Example#2294 - PostgreSQL extension overview example
- Example#2295 - pg_affected_rows example
- Example#2296 - pg_cancel_query example
- Example#2297 - pg_client_encoding example
- Example#2298 - pg_close example
- Example#2299 - Using pg_connect
- Example#2300 - pg_connection_busy example
- Example#2301 - pg_connection_reset example
- Example#2302 - pg_connection_status example
- Example#2303 - pg_convert example
- Example#2304 - pg_copy_from example
- Example#2305 - pg_copy_to example
- Example#2306 - pg_dbname example
- Example#2307 - pg_delete example
- Example#2308 - pg_end_copy example
- Example#2309 - pg_escape_bytea example
- Example#2310 - pg_escape_identifier example
- Example#2311 - pg_escape_literal example
- Example#2312 - pg_escape_string example
- Example#2313 - Using pg_execute
- Example#2314 - pg_fetch_all_columns example
- Example#2315 - PostgreSQL fetch all
- Example#2316 - pg_fetch_array example
- Example#2317 - pg_fetch_assoc example
- Example#2318 - pg_fetch_object example
- Example#2319 - pg_fetch_result example
- Example#2320 - pg_fetch_row example
- Example#2321 - pg_field_is_null example
- Example#2322 - Getting information about fields
- Example#2323 - Getting information about fields
- Example#2324 - Getting information about fields
- Example#2325 - Getting information about fields
- Example#2326 - Getting table information about a field
- Example#2327 - Getting information about fields
- Example#2328 - Getting information about fields
- Example#2329 - pg_free_result example
- Example#2330 - PostgreSQL NOTIFY message
- Example#2331 - PostgreSQL backend PID
- Example#2332 - pg_get_result example
- Example#2333 - pg_host example
- Example#2334 - pg_insert example
- Example#2335 - pg_last_error example
- Example#2336 - pg_last_notice example
- Example#2337 - pg_last_oid example
- Example#2338 - pg_lo_close example
- Example#2339 - pg_lo_create example
- Example#2340 - pg_lo_export example
- Example#2341 - pg_lo_import example
- Example#2342 - pg_lo_open example
- Example#2343 - pg_lo_read_all example
- Example#2344 - pg_lo_read example
- Example#2345 - pg_lo_seek example
- Example#2346 - pg_lo_tell example
- Example#2347 - pg_lo_truncate example
- Example#2348 - pg_lo_unlink example
- Example#2349 - pg_lo_write example
- Example#2350 - Getting table metadata
- Example#2351 - pg_num_fields example
- Example#2352 - pg_num_rows example
- Example#2353 - pg_options example
- Example#2354 - pg_parameter_status example
- Example#2355 - Using pg_pconnect
- Example#2356 - pg_ping example
- Example#2357 - pg_port example
- Example#2358 - Using pg_prepare
- Example#2359 - pg_put_line example
- Example#2360 - Using pg_query_params
- Example#2361 - pg_query example
- Example#2362 - Using pg_query with multiple statements
- Example#2363 - pg_result_error_field example
- Example#2364 - pg_result_error example
- Example#2365 - pg_result_seek example
- Example#2366 - pg_result_status example
- Example#2367 - pg_select example
- Example#2368 - Using pg_send_execute
- Example#2369 - Using pg_send_prepare
- Example#2370 - Using pg_send_query_params
- Example#2371 - pg_send_query example
- Example#2372 - pg_set_client_encoding example
- Example#2373 - pg_set_error_verbosity example
- Example#2374 - pg_trace example
- Example#2375 - pg_transaction_status example
- Example#2376 - pg_tty example
- Example#2377 - pg_unescape_bytea example
- Example#2378 - pg_untrace example
- Example#2379 - pg_update example
- Example#2380 - pg_version example
- Example#2381 - Stil procedural
- Example#2382 - Object-oriented style
- Example#2383 - Stil procedural
- Example#2384 - Stil obiect-orientat
- Example#2385 - Stil procedural
- Example#2386 - Stil obiect-orientat
- Example#2387 - sqlite_close example
- Example#2388 - max_length aggregation function example
- Example#2389 - sqlite_create_function example
- Example#2390 - Example of using the PHP function
- Example#2391 - Procedural example
- Example#2392 - Object-oriented example
- Example#2393 - sqlite_factory example
- Example#2394 - Procedural example
- Example#2395 - Object-oriented example
- Example#2396 - Procedural example
- Example#2397 - Object-oriented example
- Example#2398 - Procedural example
- Example#2399 - Object-oriented example
- Example#2400 - A sqlite_fetch_single example
- Example#2401 - Procedural example
- Example#2402 - Object-oriented example
- Example#2403 - sqlite_open example
- Example#2404 - binary-safe max_length aggregation function example
- Example#2405 - SQLite3::changes example
- Example#2406 - SQLite3::close example
- Example#2407 - SQLite3::__construct example
- Example#2408 - SQLite3::createCollation example
- Example#2409 - SQLite3::createFunction example
- Example#2410 - SQLite3::enableExceptions example
- Example#2411 - SQLite3::exec example
- Example#2412 - SQLite3::loadExtension example
- Example#2413 - SQLite3::open example
- Example#2414 - SQLite3::openBlob example
- Example#2415 - SQLite3::prepare example
- Example#2416 - SQLite3::query example
- Example#2417 - SQLite3::querySingle example
- Example#2418 - SQLite3::version example
- Example#2419 - SQLite3Stmt::bindValue example
- Example#2420 - sqlsrv_begin_transaction example
- Example#2421 - sqlsrv_cancel example
- Example#2422 - sqlsrv_client_info example
- Example#2423 - sqlsrv_close example
- Example#2424 - sqlsrv_commit example
- Example#2425 - Connect using Windows Authentication.
- Example#2426 - Connect by specifying a user name and password.
- Example#2427 - Connect on a specifed port.
- Example#2428 - functionname example
- Example#2429 - sqlsrv_execute example
- Example#2430 - Retrieving an associative array.
- Example#2431 - Retrieving a numeric array.
- Example#2432 - sqlsrv_fetch_object example
- Example#2433 - sqlsrv_fetch example
- Example#2434 - sqlsrv_field_metadata example
- Example#2435 - sqlsrv_free_stmt example
- Example#2436 - sqlsrv_get_field example
- Example#2437 - sqlsrv_has_rows example
- Example#2438 - sqlsrv_next_result example
- Example#2439 - sqlsrv_num_fields example
- Example#2440 - sqlsrv_num_rows example
- Example#2441 - sqlsrv_prepare example
- Example#2442 - sqlsrv_query example
- Example#2443 - sqlsrv_rollback example
- Example#2444 - sqlsrv_rows_affected example
- Example#2445 - sqlsrv_send_stream_data example
- Example#2446 - sqlsrv_server_info example
- Example#2447 - Delete-Query
- Example#2448 - sybase_connect example
- Example#2449 - Identical fieldnames
- Example#2450 - sybase_fetch_object return as Foo
- Example#2451 - sybase_set_message_handler callback function
- Example#2452 - sybase_set_message_handler callback to a class
- Example#2453 - sybase_set_message_handler unhandled messages
- Example#2454 - sybase_unbuffered_query example
- Example#2455 - Stabilirea și obținerea perechilor cheie-valoare
- Example#2456 - TokyoTyrant::add example
- Example#2457 - TokyoTyrant::connect example
- Example#2458 - TokyoTyrant::connectUri example
- Example#2459 - TokyoTyrant::copy example
- Example#2460 - TokyoTyrant::ext example
- Example#2461 - TokyoTyrant::fwmKeys example
- Example#2462 - TokyoTyrant::get example
- Example#2463 - TokyoTyrant::getIterator example
- Example#2464 - TokyoTyrant::num example
- Example#2465 - TokyoTyrant::out example
- Example#2466 - TokyoTyrant::put example
- Example#2467 - TokyoTyrant::putCat example
- Example#2468 - tokyotyrant::putKeep example
- Example#2469 - TokyoTyrant::putNr example
- Example#2470 - TokyoTyrant::putShl example
- Example#2471 - TokyoTyrant::setMaster example
- Example#2472 - TokyoTyrant::size example
- Example#2473 - TokyoTyrant::stat example
- Example#2474 - TokyoTyrant::vanish example
- Example#2475 - TokyoTyrantTable::genUid example
- Example#2476 - TokyoTyrantTable::get example
- Example#2477 - TokyoTyrantTable::getIterator example
- Example#2478 - TokyoTyrantTable::getQuery example
- Example#2479 - TokyoTyrantTable::out example
- Example#2480 - TokyoTyrantTable::put example
- Example#2481 - TokyoTyrantTable::putCat example
- Example#2482 - TokyoTyrantTable::putKeep example
- Example#2483 - TokyoTyrantQuery::addCond example
- Example#2484 - TokyoTyrantQuery::__construct example
- Example#2485 - TokyoTyrantQuery::count example
- Example#2486 - TokyoTyrantQuery iterator example
- Example#2487 - TokyoTyrantQuery::hint example
- Example#2488 - TokyoTyrantQuery iterator example
- Example#2489 - TokyoTyrantQuery::metaSearch example
- Example#2490 - TokyoTyrantQuery iterator example
- Example#2491 - TokyoTyrantQuery::out example
- Example#2492 - TokyoTyrantQuery iterator example
- Example#2493 - TokyoTyrantQuery::search example
- Example#2494 - TokyoTyrantQuery iterator example
- Example#2495 - TokyoTyrantIterator::__construct example
- Example#2496 - cal_days_in_month example
- Example#2497 - cal_from_jd example
- Example#2498 - cal_info example
- Example#2499 - easter_date example
- Example#2500 - easter_days example
- Example#2501 - Calendar functions
- Example#2502 - jdtojewish Example
- Example#2503 - DateTime::add/sub add intervals which cover elapsed time
- Example#2504 - DateTime::modify and strtotime increment or decrement individual component values
- Example#2505 - Adding or subtracting times can over- or underflow dates
- Example#2506 - DateTime::add example
- Example#2507 - Further DateTime::add examples
- Example#2508 - Beware when adding months
- Example#2509 - DateTime::__construct example
- Example#2510 - Intricacies of DateTime::__construct
- Example#2511 - DateTime::createFromFormat example
- Example#2512 - Intricacies of DateTime::createFromFormat
- Example#2513 - Format string with literal characters
- Example#2514 - DateTime::getLastErrors example
- Example#2515 - DateTime::modify example
- Example#2516 - Beware when adding or subtracting months
- Example#2517 - DateTime::setDate example
- Example#2518 - Values exceeding ranges are added to their parent values
- Example#2519 - DateTime::setISODate example
- Example#2520 - Values exceeding ranges are added to their parent values
- Example#2521 - Finding the month a week is in
- Example#2522 - DateTime::setTime example
- Example#2523 - Values exceeding ranges are added to their parent values
- Example#2524 - DateTime::setTimestamp example
- Example#2525 - DateTime::setTimestamp alternative in PHP 5.2
- Example#2526 - DateTime::setTimeZone example
- Example#2527 - DateTime::sub example
- Example#2528 - Further DateTime::sub examples
- Example#2529 - Beware when subtracting months
- Example#2530 - Creating an immutable date time object
- Example#2531 - DateTime::diff example
- Example#2532 - DateTime object comparison
- Example#2533 - DateTime::format example
- Example#2534 - DateTime::getOffset example
- Example#2535 - DateTime::getTimestamp example
- Example#2536 - DateTime::getTimezone example
- Example#2537 - Catching errors when instantiating DateTimeZone
- Example#2538 - DateTimeZone::getLocation example
- Example#2539 - DateTimeZone::getOffset examples
- Example#2540 - A timezone_transitions_get example
- Example#2541 - A timezone_abbreviations_list example
- Example#2542 - A timezone_identifiers_list example
- Example#2543 - DateInterval example
- Example#2544 - Parsing valid date intervals
- Example#2545 - DateInterval example
- Example#2546 - DateInterval and carry over points
- Example#2547 - DateInterval and
DateTime::diff with the %a and %d modifiers
- Example#2548 - DatePeriod example
- Example#2549 - DatePeriod example with DatePeriod::EXCLUDE_START_DATE
- Example#2550 - DatePeriod::getDateInterval example
- Example#2551 - DatePeriod::getEndDate example
- Example#2552 - DatePeriod::getEndDate without an end date
- Example#2553 - DatePeriod::getStartDate example
- Example#2554 - Exemplu checkdate
- Example#2555 - Getting the default timezone
- Example#2556 - Getting the abbreviation of a timezone
- Example#2557 - Getting the default timezone
- Example#2558 - date_parse_from_format example
- Example#2559 - A date_parse example
- Example#2560 - date_parse with relative formats
- Example#2561 - A date_sun_info example
- Example#2562 - date_sunrise example
- Example#2563 - date_sunset example
- Example#2564 - Exemple date
- Example#2565 - Evadarea caracterelor în date
- Example#2566 - Exemplu date și mktime
- Example#2567 - Formatarea date
- Example#2568 - Exemplu getdate
- Example#2569 - Exemplu gettimeofday
- Example#2570 - Exemple gmdate
- Example#2571 - Exemplu simplu gmmktime
- Example#2572 - Exemplu gmstrftime
- Example#2573 - idate example
- Example#2574 - Exemplu localtime
- Example#2575 - Măsurarea timpului de execuție a script-ului cu ajutorul microtime
- Example#2576 - Măsurarea timpului de execuție a script-ului în PHP 5
- Example#2577 - microtime și REQUEST_TIME_FLOAT (începând cu PHP 5.4.0)
- Example#2578 - Exemplu simplu mktime
- Example#2579 - Exemple mktime
- Example#2580 - Ultima zi a lunii
- Example#2581 - Exemple strftime
- Example#2582 - Exemplu al numerelor săptămânilor conform standardului ISO 8601:1988
- Example#2583 - Un exemplu de funcție compatibilă pe mai multe platforme, ce
utilizează modificatorul %e
- Example#2584 - Afișează toate formatele cunoscute și necunoscute.
- Example#2585 - strptime example
- Example#2586 - Exemplu strtotime
- Example#2587 - Verificarea eșecului
- Example#2588 - Exemplu time
- Example#2589 - A timezone_name_from_abbr example
- Example#2590 - Getting the timezonedb version
- Example#2591 - Measure several code blocks execution and get the total
- Example#2592 - Closing an open file descriptor
- Example#2593 - Setting and clearing a lock
- Example#2594 - Opening a file descriptor
- Example#2595 - Positioning in a file
- Example#2596 - Setting the baud rate on a serial port
- Example#2597 - chdir example
- Example#2598 - chroot example
- Example#2599 - closedir example
- Example#2600 - dir example
- Example#2601 - getcwd example
- Example#2602 - opendir example
- Example#2603 - List all entries in a directory
- Example#2604 - List all entries in the current directory and strip out .
and ..
- Example#2605 - A simple scandir example
- Example#2606 - PHP 4 alternatives to scandir
- Example#2607 - A finfo_buffer example
- Example#2608 - A finfo_file example
- Example#2609 - Stil obiect-orientat
- Example#2610 - Stil procedural
- Example#2611 - mime_content_type Example
- Example#2612 - basename example
- Example#2613 - Changing a file's group
- Example#2614 - Simple chown usage
- Example#2615 - clearstatcache example
- Example#2616 - copy example
- Example#2617 - dirname example
- Example#2618 - disk_free_space example
- Example#2619 - disk_total_space example
- Example#2620 - A simple fclose example
- Example#2621 - Handling timeouts with feof
- Example#2622 - feof example with an invalid file pointer
- Example#2623 - File write example using fflush
- Example#2624 - A fgetc example
- Example#2625 - Read and print the entire contents of a CSV file
- Example#2626 - Reading a file line by line
- Example#2627 - Reading a PHP file line-by-line
- Example#2628 - Testing whether a file exists
- Example#2629 - Get and output the source of the homepage of a website
- Example#2630 - Searching within the include_path
- Example#2631 - Reading a section of a file
- Example#2632 - Using stream contexts
- Example#2633 - Simple usage example
- Example#2634 - Using flags
- Example#2635 - file example
- Example#2636 - fileatime example
- Example#2637 - A filectime example
- Example#2638 - Finding the group of a file
- Example#2639 - Comparing the inode of a file with the current file
- Example#2640 - filemtime example
- Example#2641 - Finding the owner of a file
- Example#2642 - Display permissions as an octal value
- Example#2643 - Display full permissions
- Example#2644 - filesize example
- Example#2645 - filetype example
- Example#2646 - flock example
- Example#2647 - flock using the LOCK_NB option
- Example#2648 - Checking a color name against a shell wildcard pattern
- Example#2649 - fopen examples
- Example#2650 - Using fpassthru with binary files
- Example#2651 - fputcsv example
- Example#2652 - A simple fread example
- Example#2653 - Binary fread example
- Example#2654 - Remote fread examples
- Example#2655 - fscanf Example
- Example#2656 - Contents of users.txt
- Example#2657 - fseek example
- Example#2658 - fstat example
- Example#2659 - ftell example
- Example#2660 - File truncation example
- Example#2661 - A simple fwrite example
- Example#2662 - Convenient way how glob can replace
opendir and friends.
- Example#2663 - is_dir example
- Example#2664 - is_executable example
- Example#2665 - is_file example
- Example#2666 - Create and confirm if a file is a symbolic link
- Example#2667 - is_readable example
- Example#2668 - is_uploaded_file example
- Example#2669 - is_writable example
- Example#2670 - Changing the group of a symbolic link
- Example#2671 - Changing the owner of a symbolic link
- Example#2672 - Creating a simple hard link
- Example#2673 - linkinfo example
- Example#2674 - Comparison of stat and lstat
- Example#2675 - mkdir example
- Example#2676 - mkdir using the recursive parameter
- Example#2677 - Uploading multiple files
- Example#2678 - Contents of sample.ini
- Example#2679 - parse_ini_file example
- Example#2680 - parse_ini_file parsing a php.ini file
- Example#2681 - pathinfo Example
- Example#2682 - pathinfo example showing difference between null and no extension
- Example#2683 - pathinfo example for a dot-file
- Example#2684 - pclose example
- Example#2685 - popen example
- Example#2686 - popen example
- Example#2687 - Forcing a download using readfile
- Example#2688 - readlink example
- Example#2689 - realpath_cache_get example
- Example#2690 - realpath_cache_size example
- Example#2691 - realpath example
- Example#2692 - realpath on Windows
- Example#2693 - Example with rename
- Example#2694 - rewind overwriting example
- Example#2695 - rmdir example
- Example#2696 - stat example
- Example#2697 - Using stat information together with touch
- Example#2698 - Create a symbolic link
- Example#2699 - tempnam example
- Example#2700 - tmpfile example
- Example#2701 - touch example
- Example#2702 - touch using the time parameter
- Example#2703 - umask example
- Example#2704 - Basic unlink usage
- Example#2705 - Example usage of inotify
- Example#2706 - Setting the path to magic.mime
- Example#2707 - setproctitle example
- Example#2708 - setthreadtitle example
- Example#2709 - Checks if system administrator has signed the file
- Example#2710 - Prints names of all extended attributes of file
- Example#2711 - Removes all extended attributes of a file
- Example#2712 - Sets extended attributes on .wav file
- Example#2713 - xattr_supported example
- Example#2714 - xdiff_file_bdiff_size example
- Example#2715 - xdiff_file_bdiff example
- Example#2716 - xdiff_file_bpatch example
- Example#2717 - xdiff_file_diff_binary example
- Example#2718 - xdiff_file_diff example
- Example#2719 - xdiff_file_merge3 example
- Example#2720 - xdiff_file_patch_binary example
- Example#2721 - xdiff_file_patch example
- Example#2722 - Patch reversing example
- Example#2723 - xdiff_file_rabdiff example
- Example#2724 - xdiff_string_bdiff_size example
- Example#2725 - xdiff_string_diff example
- Example#2726 - xdiff_string_patch example
- Example#2727 - Enchant Usage Example
- Example#2728 - List the backends provided by the given broker
- Example#2729 - A enchant_broker_dict_exists example
- Example#2730 - List all available dictionaries for one broker
- Example#2731 - A enchant_broker_request_dict example
- Example#2732 - Adding a word to a PWL
- Example#2733 - A enchant_dict_describe example
- Example#2734 - A enchant_dict_quick_check example
- Example#2735 - A enchant_dict_suggest example
- Example#2736 - Usage example.
- Example#2737 - Using Gender\Gender::country
- Example#2738 - bindtextdomain example
- Example#2739 - gettext-check
- Example#2740 - ngettext example
- Example#2741 - iconv_get_encoding example
- Example#2742 - iconv_mime_decode_headers example
- Example#2743 - iconv_mime_decode example
- Example#2744 - iconv_mime_encode example
- Example#2745 - iconv_set_encoding example
- Example#2746 - iconv example
- Example#2747 - ob_iconv_handler example:
- Example#2748 - Example of using the procedural API
- Example#2749 - Example of using the object-oriented API
- Example#2750 - FRENCH_COLLATION rules
- Example#2751 - ALTERNATE_HANDLING rules
- Example#2752 - CASE_FIRST rules
- Example#2753 - CASE_LEVEL rules
- Example#2754 - collator_asortexample
- Example#2755 - collator_compareexample
- Example#2756 - Collator::__construct example
- Example#2757 - collator_create example
- Example#2758 - collator_get_attribute example
- Example#2759 - collator_get_error_code example
- Example#2760 - collator_get_error_message example
- Example#2761 - collator_get_locale example
- Example#2762 - collator_get_sort_keyexample
- Example#2763 - collator_get_strength example
- Example#2764 - collator_set_attribute example
- Example#2765 - collator_set_strength example
- Example#2766 - collator_sort_with_sort_keys example
- Example#2767 - collator_sort example
- Example#2768 - numfmt_create example
- Example#2769 - NumberFormatter::create example
- Example#2770 - numfmt_format_currency example
- Example#2771 - OO example
- Example#2772 - numfmt_format example
- Example#2773 - OO example
- Example#2774 - numfmt_get_attribute example
- Example#2775 - OO example
- Example#2776 - numfmt_get_error_code example
- Example#2777 - OO example
- Example#2778 - numfmt_get_error_message example
- Example#2779 - OO example
- Example#2780 - numfmt_get_locale example
- Example#2781 - numfmt_get_pattern example
- Example#2782 - OO example
- Example#2783 - numfmt_get_symbol example
- Example#2784 - OO example
- Example#2785 - numfmt_get_text_attribute example
- Example#2786 - OO example
- Example#2787 - numfmt_parse_currency example
- Example#2788 - OO example
- Example#2789 - numfmt_parse example
- Example#2790 - OO example
- Example#2791 - numfmt_set_attribute example
- Example#2792 - OO example
- Example#2793 - numfmt_set_pattern example
- Example#2794 - OO example
- Example#2795 - numfmt_set_symbol example
- Example#2796 - OO example
- Example#2797 - numfmt_set_text_attribute example
- Example#2798 - OO example
- Example#2799 - locale_accept_from_http example
- Example#2800 - OO example
- Example#2801 - locale_compose example
- Example#2802 - OO example
- Example#2803 - locale_filter_matches example
- Example#2804 - OO example
- Example#2805 - locale_get_all_variants example
- Example#2806 - OO example
- Example#2807 - locale_get_default example
- Example#2808 - OO example
- Example#2809 - locale_get_display_language example
- Example#2810 - OO example
- Example#2811 - locale_get_display_name example
- Example#2812 - OO example
- Example#2813 - locale_get_display_region example
- Example#2814 - OO example
- Example#2815 - locale_get_display_script example
- Example#2816 - OO example
- Example#2817 - locale_get_display_variant example
- Example#2818 - OO example
- Example#2819 - locale_get_keywords example
- Example#2820 - OO example
- Example#2821 - locale_get_primary_language example
- Example#2822 - OO example
- Example#2823 - locale_get_region example
- Example#2824 - OO example
- Example#2825 - locale_get_script example
- Example#2826 - OO example
- Example#2827 - locale_lookup example
- Example#2828 - OO example
- Example#2829 - locale_parse example
- Example#2830 - OO example
- Example#2831 - locale_set_default example
- Example#2832 - OO example
- Example#2833 - normalizer_is_normalized example
- Example#2834 - OO example
- Example#2835 - normalizer_normalize example
- Example#2836 - OO example
- Example#2837 - msgfmt_create example
- Example#2838 - OO example
- Example#2839 - msgfmt_format_message example
- Example#2840 - OO example
- Example#2841 - msgfmt_format example
- Example#2842 - OO example
- Example#2843 - msgfmt_get_error_code example
- Example#2844 - OO example
- Example#2845 - msgfmt_get_error_message example
- Example#2846 - OO example
- Example#2847 - msgfmt_get_locale example
- Example#2848 - OO example
- Example#2849 - msgfmt_get_pattern example
- Example#2850 - OO example
- Example#2851 - msgfmt_parse_message example
- Example#2852 - OO example
- Example#2853 - msgfmt_parse example
- Example#2854 - OO example
- Example#2855 - msgfmt_set_pattern example
- Example#2856 - OO example
- Example#2857 - IntlCalendar::add
- Example#2858 - IntlCalendar::after
- Example#2859 - IntlCalendar::clear examples
- Example#2860 - IntlCalendar::createInstance
- Example#2861 - IntlCalendar::equals
- Example#2862 - IntlCalendar::fieldDifference
- Example#2863 - IntlCalendar::fromDateTime
- Example#2864 - IntlCalendar::get
- Example#2865 - IntlCalendar::getActualMaximum
- Example#2866 - IntlCalendar::getAvailableLocales()
- Example#2867 - IntlCalendar::getDayOfWeekType
- Example#2868 - IntlCalendar::getErrorCode and
IntlCalendar::getErrorMessage
- Example#2869 - IntlCalendar::getErrorMessage
- Example#2870 - IntlCalendar::getFirstDayOfWeek
- Example#2871 - IntlCalendar::getKeyworkValuesForLocale
- Example#2872 - Maxima examples
- Example#2873 - IntlCalendar::getLocale
- Example#2874 - IntlCalendar::getMinimalDaysInFirstWeek
- Example#2875 - IntlCalendar::getNow
- Example#2876 - IntlCalendar::getRepeatedWallTimeOption
- Example#2877 - IntlCalendar::getSkippedWallTimeOption
- Example#2878 - IntlCalendar::getTime
- Example#2879 - IntlCalendar::getTimeZone
- Example#2880 - IntlCalendar::getType
- Example#2881 - IntlCalendar::inDaylightTime
- Example#2882 - IntlCalendar::isEquivalentTo
- Example#2883 - IntlCalendar::isLenient
- Example#2884 - IntlCalendar::isWeekend
- Example#2885 - IntlCalendar::roll
- Example#2886 - IntlCalendar::set
- Example#2887 - IntlCalendar::setFirstDayOfWeek
- Example#2888 - IntlCalendar::setTime
- Example#2889 - IntlCalendar::setTimeZone
- Example#2890 - IntlCalendar::toDateTime
- Example#2891 - datefmt_create example
- Example#2892 - OO example
- Example#2893 - datefmt_format example
- Example#2894 - OO example
- Example#2895 - With IntlCalendar object
- Example#2896 - IntlDateFormatter::formatObject examples
- Example#2897 - datefmt_get_calendar example
- Example#2898 - OO example
- Example#2899 - datefmt_get_datetype example
- Example#2900 - OO example
- Example#2901 - datefmt_get_error_code example
- Example#2902 - OO example
- Example#2903 - datefmt_get_error_message example
- Example#2904 - OO example
- Example#2905 - datefmt_get_locale example
- Example#2906 - OO example
- Example#2907 - datefmt_get_pattern example
- Example#2908 - OO example
- Example#2909 - datefmt_get_timetype example
- Example#2910 - OO example
- Example#2911 - datefmt_get_timezone_id example
- Example#2912 - OO example
- Example#2913 - IntlDateFormatter::getCalendarObject example
- Example#2914 - IntlDateFormatter::getTimeZone examples
- Example#2915 - datefmt_is_lenient example
- Example#2916 - OO example
- Example#2917 - datefmt_localtime example
- Example#2918 - OO example
- Example#2919 - OO example
- Example#2920 - datefmt_parse example
- Example#2921 - datefmt_set_calendar example
- Example#2922 - OO example
- Example#2923 - Example with IntlCalendar argument
- Example#2924 - datefmt_set_lenient example
- Example#2925 - OO example
- Example#2926 - datefmt_set_pattern example
- Example#2927 - OO example
- Example#2928 - datefmt_set_timezone_id example
- Example#2929 - OO example
- Example#2930 - IntlDateFormatter::setTimeZone examples
- Example#2931 - resourcebundle_count example
- Example#2932 - OO example
- Example#2933 - resourcebundle_create example
- Example#2934 - ResourceBundle::create example
- Example#2935 - resourcebundle_get_error_code example
- Example#2936 - OO example
- Example#2937 - resourcebundle_get_error_message example
- Example#2938 - OO example
- Example#2939 - resourcebundle_get example
- Example#2940 - OO example
- Example#2941 - resourcebundle_locales example
- Example#2942 - OO example
- Example#2943 - Spoofchecker::areConfusable example
- Example#2944 - Spoofchecker::isSuspicious example
- Example#2945 - Converting escaped UTF-16 code units
- Example#2946 - grapheme_extract example
- Example#2947 - grapheme_stripos example
- Example#2948 - grapheme_stristr example
- Example#2949 - grapheme_strlen example
- Example#2950 - grapheme_strpos example
- Example#2951 - grapheme_strripos example
- Example#2952 - grapheme_strrpos example
- Example#2953 - grapheme_strstr example
- Example#2954 - grapheme_substr example
- Example#2955 - idn_to_ascii example
- Example#2956 - idn_to_utf8 example
- Example#2957 - Testarea diferitor code points
- Example#2958 - Testarea diferitor code points
- Example#2959 - Testarea diferitor code points
- Example#2960 - Testarea diferitor code points
- Example#2961 - Testarea diferitor code points
- Example#2962 - Testarea diferitor code points
- Example#2963 - Testarea diferitor code points
- Example#2964 - Testarea diferitor code points
- Example#2965 - Testarea diferitor code points
- Example#2966 - Enumerating over a sample range of code points
- Example#2967 - Enumerating over a sample range of code points
- Example#2968 - Testarea diferitor code points
- Example#2969 - Testarea diferitor code points
- Example#2970 - Testarea diferitor code points
- Example#2971 - Testarea diferitor code points
- Example#2972 - Testarea diferitor code points
- Example#2973 - Testarea diferitor proprietăți
- Example#2974 - Testarea diferitor proprietăți
- Example#2975 - Testarea diferitor proprietăți
- Example#2976 - Testarea diferitor code points
- Example#2977 - Testarea diferitor proprietăți
- Example#2978 - Testarea diferitor proprietăți
- Example#2979 - Testarea diferitor proprietăți
- Example#2980 - Testarea diferitor proprietăți
- Example#2981 - Testarea diferitor proprietăți
- Example#2982 - Testarea diferitor proprietăți
- Example#2983 - Testarea diferitor code points
- Example#2984 - Testarea diferitor code points
- Example#2985 - Testarea diferitor code points
- Example#2986 - Testarea diferitor code points
- Example#2987 - Testarea diferitor code points
- Example#2988 - Testarea diferitor code points
- Example#2989 - Testarea diferitor code points
- Example#2990 - Testarea diferitor code points
- Example#2991 - Testarea diferitor code points
- Example#2992 - Testarea diferitor code points
- Example#2993 - Testarea diferitor code points
- Example#2994 - Testarea diferitor code points
- Example#2995 - Testarea diferitor code points
- Example#2996 - Testarea diferitor code points
- Example#2997 - Testarea diferitor code points
- Example#2998 - Testarea diferitor code points
- Example#2999 - Testarea diferitor code points
- Example#3000 - Testarea diferitor code points
- Example#3001 - Testarea diferitor code points
- Example#3002 - Testarea diferitor code points
- Example#3003 - Testarea diferitor code points
- Example#3004 - Testarea diferitor code points
- Example#3005 - Testarea diferitor code points
- Example#3006 - Testarea diferitor code points
- Example#3007 - Testarea diferitor code points
- Example#3008 - Testarea diferitor code points
- Example#3009 - Testarea diferitor code points
- Example#3010 - Testarea diferitor code points
- Example#3011 - Testarea diferitor code points
- Example#3012 - Testarea diferitor code points
- Example#3013 - Testarea diferitor code points
- Example#3014 - Testarea diferitor code points
- Example#3015 - intl_error_name example
- Example#3016 - intl_get_error_code example
- Example#3017 - intl_get_error_message example
- Example#3018 - intl_is_failure example
- Example#3019 - exemple de setări în php.ini
- Example#3020 - setări în php.ini pentru utilizatorii EUC-JP
- Example#3021 - setări în php.ini pentru utilizatorii SJIS
- Example#3022 - Disable HTTP input conversion in php.ini
- Example#3023 - php.ini setting example
- Example#3024 - Script example
- Example#3025 - mb_convert_case example
- Example#3026 - mb_convert_case example with non-Latin UTF-8 text
- Example#3027 - mb_convert_encoding example
- Example#3028 - mb_convert_kana example
- Example#3029 - mb_convert_variables example
- Example#3030 - convmap example
- Example#3031 - convmap example escapes JavaScript string
- Example#3032 - mb_detect_encoding example
- Example#3033 - mb_detect_order examples
- Example#3034 - Example showing useless detect orders
- Example#3035 - mb_encode_mimeheader example
- Example#3036 - convmap example
- Example#3037 - mb_encode_numericentity example
- Example#3038 - mb_encoding_aliases example
- Example#3039 - mb_ereg_replace_callback example
- Example#3040 - mb_ereg_replace_callback using anonymous function
supported in PHP 5.3.0 or later
- Example#3041 - mb_internal_encoding example
- Example#3042 - mb_list_encodings example
- Example#3043 - mb_output_handler example
- Example#3044 - mb_preferred_mime_name example
- Example#3045 - mb_strimwidth example
- Example#3046 - mb_strtolower example
- Example#3047 - mb_strtolower example with non-Latin UTF-8 text
- Example#3048 - mb_strtoupper example
- Example#3049 - mb_strtoupper example with non-Latin UTF-8 text
- Example#3050 - mb_substitute_character example
- Example#3051 - mb_substr_count example
- Example#3052 - pspell_add_to_personal
- Example#3053 - pspell_check Example
- Example#3054 - pspell_add_to_personal Example
- Example#3055 - pspell_config_create
- Example#3056 - pspell_config_ignore
- Example#3057 - pspell_config_mode Example
- Example#3058 - pspell_config_personal
- Example#3059 - pspell_config_repl
- Example#3060 - pspell_config_runtogether
- Example#3061 - pspell_new_config
- Example#3062 - pspell_new_personal
- Example#3063 - pspell_new
- Example#3064 - pspell_add_to_personal
- Example#3065 - pspell_store_replacement
- Example#3066 - pspell_suggest example
- Example#3067 - Basic recode_file example
- Example#3068 - Basic recode_string example
- Example#3069 - Exemplu Cairo
- Example#3070 - cairo_create example
- Example#3071 - cairo_font_face_get_type example
- Example#3072 - cairo_font_face_status example
- Example#3073 - cairo_font_options_create example
- Example#3074 - cairo_font_options_equal example
- Example#3075 - cairo_font_options_get_antialias example
- Example#3076 - cairo_font_options_get_hint_metrics example
- Example#3077 - cairo_font_options_get_hint_style example
- Example#3078 - cairo_font_options_get_subpixel_order example
- Example#3079 - cairo_font_options_hash example
- Example#3080 - cairo_font_options_merge example
- Example#3081 - cairo_font_options_set_antialias example
- Example#3082 - cairo_font_options_set_hint_metrics example
- Example#3083 - cairo_font_options_set_hint_style example
- Example#3084 - cairo_font_options_set_subpixel_order example
- Example#3085 - cairo_font_options_status example
- Example#3086 - cairo_format_stride_for_width example
- Example#3087 - cairo_image_surface_create_for_data example
- Example#3088 - cairo_image_surface_create_from_png example
- Example#3089 - cairo_image_surface_create example
- Example#3090 - cairo_image_surface_get_data example
- Example#3091 - cairo_image_surface_get_format example
- Example#3092 - cairo_image_surface_get_height example
- Example#3093 - cairo_image_surface_get_stride example
- Example#3094 - cairo_image_surface_get_width example
- Example#3095 - cairo_matrix_invert example
- Example#3096 - cairo_matrix_multiply example
- Example#3097 - cairo_matrix_rotate example
- Example#3098 - cairo_matrix_transform_distance example
- Example#3099 - cairo_matrix_transform_point example
- Example#3100 - cairo_matrix_translate example
- Example#3101 - cairo_pattern_add_color_stop_rgb example
- Example#3102 - cairo_pattern_add_color_stop_rgba example
- Example#3103 - cairo_pattern_create_for_surface example
- Example#3104 - cairo_pattern_create_linear example
- Example#3105 - cairo_pattern_create_radial example
- Example#3106 - cairo_pattern_create_rgb example
- Example#3107 - cairo_pattern_create_rgba example
- Example#3108 - cairo_pattern_get_color_stop_count example
- Example#3109 - cairo_pattern_get_color_stop_rgba example
- Example#3110 - cairo_pattern_get_extend example
- Example#3111 - cairo_pattern_get_filter example
- Example#3112 - cairo_pattern_get_linear_points example
- Example#3113 - cairo_pattern_get_matrix example
- Example#3114 - cairo_pattern_get_radial_circles example
- Example#3115 - cairo_pattern_get_rgba example
- Example#3116 - cairo_pattern_get_surface example
- Example#3117 - cairo_pattern_get_type example
- Example#3118 - cairo_pattern_set_extend example
- Example#3119 - cairo_pattern_set_filter example
- Example#3120 - cairo_pattern_set_matrix example
- Example#3121 - cairo_pattern_status example
- Example#3122 - cairo_pdf_surface_create example
- Example#3123 - cairo_pdf_surface_set_size example
- Example#3124 - cairo_ps_get_levels example
- Example#3125 - cairo_ps_level_to_string example
- Example#3126 - cairo_ps_surface_create example
- Example#3127 - cairo_ps_surface_dsc_begin_page_setup example
- Example#3128 - cairo_ps_surface_dsc_begin_setup example
- Example#3129 - cairo_ps_surface_dsc_comment example
- Example#3130 - cairo_ps_surface_get_eps example
- Example#3131 - cairo_ps_surface_restrict_to_level example
- Example#3132 - cairo_ps_surface_set_eps example
- Example#3133 - cairo_ps_surface_set_size example
- Example#3134 - cairo_scaled_font_create example
- Example#3135 - cairo_scaled_font_extents example
- Example#3136 - cairo_scaled_font_get_ctm example
- Example#3137 - cairo_scaled_font_get_font_face example
- Example#3138 - cairo_scaled_font_get_font_matrix example
- Example#3139 - cairo_scaled_font_get_font_options example
- Example#3140 - cairo_scaled_font_get_scale_matrix example
- Example#3141 - cairo_scaled_font_get_type example
- Example#3142 - cairo_scaled_font_glyph_extents example
- Example#3143 - cairo_scaled_font_status example
- Example#3144 - cairo_scaled_font_text_extents example
- Example#3145 - cairo_surface_copy_page example
- Example#3146 - cairo_surface_create_similar example
- Example#3147 - cairo_surface_finish example
- Example#3148 - cairo_surface_flush example
- Example#3149 - cairo_surface_get_content example
- Example#3150 - cairo_surface_get_device_offset example
- Example#3151 - cairo_surface_get_font_options example
- Example#3152 - cairo_surface_get_type example
- Example#3153 - cairo_surface_mark_dirty_rectangle example
- Example#3154 - cairo_surface_mark_dirty example
- Example#3155 - cairo_surface_set_device_offset example
- Example#3156 - cairo_surface_set_fallback_resolution example
- Example#3157 - cairo_surface_show_page example
- Example#3158 - cairo_surface_status example
- Example#3159 - cairo_surface_write_to_png example
- Example#3160 - cairo_svg_surface_create example
- Example#3161 - cairo_svg_surface_restrict_to_version example
- Example#3162 - cairo_svg_version_to_string example
- Example#3163 - Stil obiect-orientat
- Example#3164 - Stil procedural
- Example#3165 - Stil obiect-orientat
- Example#3166 - Stil procedural
- Example#3167 - Stil obiect-orientat
- Example#3168 - Stil procedural
- Example#3169 - Stil obiect-orientat
- Example#3170 - Stil procedural
- Example#3171 - Stil obiect-orientat
- Example#3172 - Stil procedural
- Example#3173 - Stil obiect-orientat
- Example#3174 - Stil procedural
- Example#3175 - Stil obiect-orientat
- Example#3176 - Stil procedural
- Example#3177 - Stil obiect-orientat
- Example#3178 - Stil procedural
- Example#3179 - Stil obiect-orientat
- Example#3180 - Stil procedural
- Example#3181 - Stil obiect-orientat
- Example#3182 - Stil procedural
- Example#3183 - Stil obiect-orientat
- Example#3184 - Stil procedural
- Example#3185 - Stil obiect-orientat
- Example#3186 - Stil procedural
- Example#3187 - Stil obiect-orientat
- Example#3188 - Stil procedural
- Example#3189 - CairoContext::__construct example
- Example#3190 - Stil obiect-orientat
- Example#3191 - Stil procedural
- Example#3192 - Stil obiect-orientat
- Example#3193 - Stil procedural
- Example#3194 - Stil obiect-orientat
- Example#3195 - Stil procedural
- Example#3196 - Stil obiect-orientat
- Example#3197 - Stil procedural
- Example#3198 - Stil obiect-orientat
- Example#3199 - Stil procedural
- Example#3200 - Stil obiect-orientat
- Example#3201 - Stil procedural
- Example#3202 - Stil obiect-orientat
- Example#3203 - Stil procedural
- Example#3204 - Stil obiect-orientat
- Example#3205 - Stil procedural
- Example#3206 - Stil obiect-orientat
- Example#3207 - Stil procedural
- Example#3208 - Stil obiect-orientat
- Example#3209 - Stil procedural
- Example#3210 - Stil obiect-orientat
- Example#3211 - Stil procedural
- Example#3212 - Stil obiect-orientat
- Example#3213 - Stil procedural
- Example#3214 - Stil obiect-orientat
- Example#3215 - Stil procedural
- Example#3216 - Stil obiect-orientat
- Example#3217 - Stil procedural
- Example#3218 - Stil obiect-orientat
- Example#3219 - Stil procedural
- Example#3220 - Stil obiect-orientat
- Example#3221 - Stil procedural
- Example#3222 - Stil obiect-orientat
- Example#3223 - Stil procedural
- Example#3224 - Stil obiect-orientat
- Example#3225 - Stil procedural
- Example#3226 - Stil obiect-orientat
- Example#3227 - Stil procedural
- Example#3228 - Stil obiect-orientat
- Example#3229 - Stil procedural
- Example#3230 - Stil obiect-orientat
- Example#3231 - Stil procedural
- Example#3232 - Stil obiect-orientat
- Example#3233 - Stil procedural
- Example#3234 - Stil obiect-orientat
- Example#3235 - Stil procedural
- Example#3236 - Stil obiect-orientat
- Example#3237 - Stil procedural
- Example#3238 - Stil obiect-orientat
- Example#3239 - Stil procedural
- Example#3240 - Stil obiect-orientat
- Example#3241 - Stil procedural
- Example#3242 - Stil obiect-orientat
- Example#3243 - Stil procedural
- Example#3244 - Stil obiect-orientat
- Example#3245 - Stil procedural
- Example#3246 - Stil obiect-orientat
- Example#3247 - Stil procedural
- Example#3248 - Stil obiect-orientat
- Example#3249 - Stil procedural
- Example#3250 - Stil obiect-orientat
- Example#3251 - Stil procedural
- Example#3252 - Stil obiect-orientat
- Example#3253 - Stil procedural
- Example#3254 - Stil obiect-orientat
- Example#3255 - Stil procedural
- Example#3256 - Stil obiect-orientat
- Example#3257 - Stil procedural
- Example#3258 - Stil obiect-orientat
- Example#3259 - Stil procedural
- Example#3260 - Stil obiect-orientat
- Example#3261 - Stil procedural
- Example#3262 - Stil obiect-orientat
- Example#3263 - Stil procedural
- Example#3264 - Stil obiect-orientat
- Example#3265 - Stil procedural
- Example#3266 - Stil obiect-orientat
- Example#3267 - Stil procedural
- Example#3268 - Stil obiect-orientat
- Example#3269 - Stil procedural
- Example#3270 - Stil obiect-orientat
- Example#3271 - Stil procedural
- Example#3272 - Stil obiect-orientat
- Example#3273 - Stil procedural
- Example#3274 - Stil obiect-orientat
- Example#3275 - Stil procedural
- Example#3276 - Stil obiect-orientat
- Example#3277 - Stil procedural
- Example#3278 - Stil obiect-orientat
- Example#3279 - Stil procedural
- Example#3280 - Stil obiect-orientat
- Example#3281 - Stil procedural
- Example#3282 - Stil obiect-orientat
- Example#3283 - Stil procedural
- Example#3284 - Stil obiect-orientat
- Example#3285 - Stil procedural
- Example#3286 - Stil obiect-orientat
- Example#3287 - Stil procedural
- Example#3288 - Stil obiect-orientat
- Example#3289 - Stil procedural
- Example#3290 - Stil obiect-orientat
- Example#3291 - Stil procedural
- Example#3292 - Stil obiect-orientat
- Example#3293 - Stil procedural
- Example#3294 - Stil obiect-orientat
- Example#3295 - Stil procedural
- Example#3296 - Stil obiect-orientat
- Example#3297 - Stil procedural
- Example#3298 - Stil obiect-orientat
- Example#3299 - Stil procedural
- Example#3300 - Stil obiect-orientat
- Example#3301 - Stil procedural
- Example#3302 - Stil obiect-orientat
- Example#3303 - Stil procedural
- Example#3304 - Stil obiect-orientat
- Example#3305 - Stil procedural
- Example#3306 - Stil obiect-orientat
- Example#3307 - Stil procedural
- Example#3308 - Stil obiect-orientat
- Example#3309 - Stil procedural
- Example#3310 - Stil obiect-orientat
- Example#3311 - Stil procedural
- Example#3312 - Stil obiect-orientat
- Example#3313 - Stil procedural
- Example#3314 - Stil obiect-orientat
- Example#3315 - Stil procedural
- Example#3316 - Stil obiect-orientat
- Example#3317 - Stil procedural
- Example#3318 - Stil obiect-orientat
- Example#3319 - Stil procedural
- Example#3320 - Stil obiect-orientat
- Example#3321 - Stil procedural
- Example#3322 - Stil obiect-orientat
- Example#3323 - Stil procedural
- Example#3324 - Stil obiect-orientat
- Example#3325 - Stil procedural
- Example#3326 - Stil obiect-orientat
- Example#3327 - Stil procedural
- Example#3328 - Stil obiect-orientat
- Example#3329 - Stil procedural
- Example#3330 - Stil obiect-orientat
- Example#3331 - Stil procedural
- Example#3332 - Stil obiect-orientat
- Example#3333 - Stil procedural
- Example#3334 - Stil obiect-orientat
- Example#3335 - Stil procedural
- Example#3336 - Stil obiect-orientat
- Example#3337 - Stil procedural
- Example#3338 - Stil obiect-orientat
- Example#3339 - Stil procedural
- Example#3340 - Stil obiect-orientat
- Example#3341 - Stil procedural
- Example#3342 - Stil obiect-orientat
- Example#3343 - Stil procedural
- Example#3344 - Stil obiect-orientat
- Example#3345 - Stil procedural
- Example#3346 - Stil obiect-orientat
- Example#3347 - Stil procedural
- Example#3348 - Stil obiect-orientat
- Example#3349 - Stil procedural
- Example#3350 - Stil obiect-orientat
- Example#3351 - Stil procedural
- Example#3352 - Stil obiect-orientat
- Example#3353 - Stil procedural
- Example#3354 - Stil obiect-orientat
- Example#3355 - Stil procedural
- Example#3356 - Stil obiect-orientat
- Example#3357 - Stil procedural
- Example#3358 - Stil obiect-orientat
- Example#3359 - Stil procedural
- Example#3360 - Stil obiect-orientat
- Example#3361 - Stil procedural
- Example#3362 - Stil obiect-orientat
- Example#3363 - Stil procedural
- Example#3364 - CairoSurface::createSimilar example
- Example#3365 - CairoSurface::finish example
- Example#3366 - CairoSurface::flush example
- Example#3367 - CairoSurface::getContent example
- Example#3368 - CairoSurface::getDeviceOffset example
- Example#3369 - Stil obiect-orientat
- Example#3370 - Stil procedural
- Example#3371 - CairoSurface::getType example
- Example#3372 - CairoSurface::markDirty example
- Example#3373 - CairoSurface::markDirtyRectangle example
- Example#3374 - CairoSurface::setDeviceOffset example
- Example#3375 - CairoSurface::setFallbackResolution example
- Example#3376 - Stil obiect-orientat
- Example#3377 - Stil procedural
- Example#3378 - Stil obiect-orientat
- Example#3379 - Stil procedural
- Example#3380 - CairoSurface::writeToPng example
- Example#3381 - CairoSvgSurface::__construct example
- Example#3382 - CairoSvgSurface::getVersions example
- Example#3383 - Stil procedural
- Example#3384 - CairoSvgSurface::restrictToVersion example
- Example#3385 - CairoSvgSurface::versionToString example
- Example#3386 - CairoImageSurface::__construct example
- Example#3387 - CairoImageSurface::createForData example
- Example#3388 - CairoImageSurface::createFromPng example
- Example#3389 - CairoImageSurface::getData example
- Example#3390 - CairoImageSurface::getFormat example
- Example#3391 - CairoImageSurface::getHeight example
- Example#3392 - CairoImageSurface::getStride example
- Example#3393 - CairoImageSurface::getWidth example
- Example#3394 - CairoPdfSurface::__construct example
- Example#3395 - CairoPdfSurface::setSize example
- Example#3396 - CairoPsSurface::__construct example
- Example#3397 - CairoPsSurface::dscBeginPageSetup example
- Example#3398 - CairoPsSurface::dscBeginSetup example
- Example#3399 - CairoPsSurface::dscComment example
- Example#3400 - CairoPsSurface::getEps example
- Example#3401 - CairoPsSurface::getLevels example
- Example#3402 - CairoPsSurface::levelToString example
- Example#3403 - CairoPsSurface::restrictToLevel example
- Example#3404 - CairoPsSurface::setEps example
- Example#3405 - CairoPsSurface::setSize example
- Example#3406 - CairoFontFace::__construct example
- Example#3407 - CairoFontFace::getType example
- Example#3408 - Stil obiect-orientat
- Example#3409 - Stil procedural
- Example#3410 - CairoFontOptions::__construct example
- Example#3411 - CairoFontOptions::equal example
- Example#3412 - Stil obiect-orientat
- Example#3413 - Stil procedural
- Example#3414 - CairoFontOptions::getHintMetrics example
- Example#3415 - CairoFontOptions::getHintStyle example
- Example#3416 - CairoFontOptions::getSubpixelOrder example
- Example#3417 - CairoFontOptions::hash example
- Example#3418 - CairoFontOptions::merge example
- Example#3419 - Stil obiect-orientat
- Example#3420 - Stil procedural
- Example#3421 - CairoFontOptions::setHintMetrics example
- Example#3422 - CairoFontOptions::setHintStyle example
- Example#3423 - CairoFontOptions::setSubpixelOrder example
- Example#3424 - Stil obiect-orientat
- Example#3425 - Stil procedural
- Example#3426 - CairoScaledFont::__construct example
- Example#3427 - CairoScaledFont::extents example
- Example#3428 - CairoScaledFont::getCtm example
- Example#3429 - Stil obiect-orientat
- Example#3430 - Stil procedural
- Example#3431 - Stil obiect-orientat
- Example#3432 - Stil procedural
- Example#3433 - Stil obiect-orientat
- Example#3434 - Stil procedural
- Example#3435 - CairoScaledFont::getScaleMatrix example
- Example#3436 - CairoScaledFont::getType example
- Example#3437 - CairoScaledFont::glyphExtents example
- Example#3438 - Stil obiect-orientat
- Example#3439 - Stil procedural
- Example#3440 - Stil obiect-orientat
- Example#3441 - Stil procedural
- Example#3442 - CairoPattern::__construct example
- Example#3443 - Stil obiect-orientat
- Example#3444 - Stil procedural
- Example#3445 - CairoPattern::getType example
- Example#3446 - Stil obiect-orientat
- Example#3447 - Stil procedural
- Example#3448 - Stil obiect-orientat
- Example#3449 - Stil procedural
- Example#3450 - CairoGradientPattern::addColorStopRgb example
- Example#3451 - CairoGradientPattern::addColorStopRgba example
- Example#3452 - CairoGradientPattern::getColorStopCount example
- Example#3453 - CairoGradientPattern::getColorStopRgba example
- Example#3454 - CairoGradientPattern::getExtend example
- Example#3455 - CairoGradientPattern::setExtend example
- Example#3456 - CairoSolidPattern::__construct example
- Example#3457 - CairoSolidPattern::getRgba example
- Example#3458 - CairoSurfacePattern::__construct example
- Example#3459 - CairoSurfacePattern::getExtend example
- Example#3460 - CairoSurfacePattern::getFilter example
- Example#3461 - CairoSurfacePattern::getSurface example
- Example#3462 - CairoSurfacePattern::setExtend example
- Example#3463 - CairoSurfacePattern::setFilter example
- Example#3464 - CairoLinearGradient::__construct example
- Example#3465 - CairoLinearGradient::getPoints example
- Example#3466 - CairoRadialGradient::__construct example
- Example#3467 - CairoRadialGradient::getCircles example
- Example#3468 - CairoFormat::strideForWidth example
- Example#3469 - Stil obiect-orientat
- Example#3470 - Stil procedural
- Example#3471 - Stil obiect-orientat
- Example#3472 - Stil procedural
- Example#3473 - Stil obiect-orientat
- Example#3474 - Stil procedural
- Example#3475 - Stil obiect-orientat
- Example#3476 - Stil procedural
- Example#3477 - Stil obiect-orientat
- Example#3478 - Stil procedural
- Example#3479 - CairoMatrix::invert example
- Example#3480 - CairoMatrix::multiply example
- Example#3481 - Stil obiect-orientat
- Example#3482 - Stil procedural
- Example#3483 - Stil obiect-orientat
- Example#3484 - Stil procedural
- Example#3485 - CairoMatrix::transformDistance example
- Example#3486 - CairoMatrix::transformPoint example
- Example#3487 - Stil obiect-orientat
- Example#3488 - Stil procedural
- Example#3489 - exif_imagetype example
- Example#3490 - exif_read_data example
- Example#3491 - exif_tagname example
- Example#3492 - exif_thumbnail example
- Example#3493 - PNG creation with PHP
- Example#3494 - Adding watermarks to images using alpha channels
- Example#3495 - Using imagecopymerge to create a translucent watermark
- Example#3496 - Using gd_info
- Example#3497 - getimagesize and MIME types
- Example#3498 - getimagesize example
- Example#3499 - getimagesize (URL)
- Example#3500 - getimagesize() returning IPTC
- Example#3501 - getimagesizefromstring example
- Example#3502 - image_type_to_extension example
- Example#3503 - image_type_to_mime_type example
- Example#3504 - image2wbmp example
- Example#3505 - imageaffinematrixconcat example
- Example#3506 - imageaffinematrixget example
- Example#3507 - imagealphablending usage example
- Example#3508 - A comparison of two lines, one with anti-aliasing switched on
- Example#3509 - Drawing a circle with imagearc
- Example#3510 - imagechar example
- Example#3511 - imagecharup example
- Example#3512 - imagecolorallocate example
- Example#3513 - Example of using imagecolorallocatealpha
- Example#3514 - Access distinct RGB values
- Example#3515 - Human-readable RGB values using imagecolorsforindex
- Example#3516 - Search for a set of colors in an image
- Example#3517 - Search for a set of colors in an image
- Example#3518 - Example of using imagecolorclosesthwb
- Example#3519 - Using imagecolordeallocate
- Example#3520 - Get colors from the GD logo
- Example#3521 - Get colors from the GD logo
- Example#3522 - imagecolormatch example
- Example#3523 - Using imagecoloresolve to get colors from an image
- Example#3524 - Using imagecoloresolvealpha to get colors from an image
- Example#3525 - imagecolorset example
- Example#3526 - imagecolorsforindex example
- Example#3527 - Getting total number of colors in an image using imagecolorstotal
- Example#3528 - imagecolortransparent example
- Example#3529 - Embossing the PHP.net logo
- Example#3530 - Gaussian blur
- Example#3531 - Cropping the PHP.net logo
- Example#3532 - Merging two copies of the PHP.net logo with 75% transparency
- Example#3533 - imagecopymergegray usage
- Example#3534 - Simple example
- Example#3535 - Resampling an image proportionally
- Example#3536 - Resizing an image
- Example#3537 - Creating a new GD image stream and outputting an image.
- Example#3538 - imagecreatefromgd2 example
- Example#3539 - imagecreatefromgd2part example
- Example#3540 - imagecreatefromgd example
- Example#3541 - Example to handle an error during loading of a GIF
- Example#3542 - Example to handle an error during loading of a JPEG
- Example#3543 - Example to handle an error during loading of a PNG
- Example#3544 - imagecreatefromstring example
- Example#3545 - Example to handle an error during loading of a WBMP
- Example#3546 - Convert an WebP image to a jpeg image using imagecreatefromwebp
- Example#3547 - Convert an XBM image to a png image using imagecreatefromxbm
- Example#3548 - Creating an image instance using imagecreatefromxpm
- Example#3549 - Creating a new GD image stream and outputting an image.
- Example#3550 - imagecrop example
- Example#3551 - Proper handling of auto-cropping
- Example#3552 - imagedashedline example
- Example#3553 - Alternative to imagedashedline
- Example#3554 - Using imagedestroy example
- Example#3555 - imageellipse example
- Example#3556 - imagefill example
- Example#3557 - Creating a 3D looking pie
- Example#3558 - imagefilledellipse example
- Example#3559 - imagefilledpolygon example
- Example#3560 - imagefilledrectangle usage
- Example#3561 - Filling an ellipse with a color
- Example#3562 - imagefilter grayscale example
- Example#3563 - imagefilter brightness example
- Example#3564 - imagefilter colorize example
- Example#3565 - imagefilter negate example
- Example#3566 - imagefilter pixelate example
- Example#3567 - Flips an image vertically
- Example#3568 - Flips the image horizontally
- Example#3569 - Using imagefontheight on built-in fonts
- Example#3570 - Using imagefontheight together with imageloadfont
- Example#3571 - Using imagefontwidth on built-in fonts
- Example#3572 - Using imagefontwidth together with imageloadfont
- Example#3573 - imageftbbox example
- Example#3574 - imagefttext example
- Example#3575 - imagegammacorrect usage
- Example#3576 - Outputting a GD2 image
- Example#3577 - Saving a GD2 image
- Example#3578 - Outputting a GD image
- Example#3579 - Saving a GD image
- Example#3580 - imagegetclip example
- Example#3581 - Outputting an image using imagegif
- Example#3582 - Converting a PNG image to GIF using imagegif
- Example#3583 - imagegrabscreen example
- Example#3584 - imagegrabwindow example
- Example#3585 - Turn on interlacing using imageinterlace
- Example#3586 - Simple detection of true color image instances using imageistruecolor
- Example#3587 - Outputting a JPEG image to the browser
- Example#3588 - Saving a JPEG image to a file
- Example#3589 - Outputting the image at 75% quality to the browser
- Example#3590 - imagelayereffect example
- Example#3591 - Drawing a thick line
- Example#3592 - imageloadfont usage example
- Example#3593 - imageopenpolygon example
- Example#3594 - imagepalettecopy example
- Example#3595 - Converts any image resource to true color
- Example#3596 - imagepolygon example
- Example#3597 - imagepsbbox usage
- Example#3598 - imagepsencodefont example
- Example#3599 - imagepsextendfont example
- Example#3600 - imagepsfreefont example
- Example#3601 - imagepsloadfont example
- Example#3602 - imagepsslantfont example
- Example#3603 - imagepstext usage
- Example#3604 - Simple imagerectangle example
- Example#3605 - Setting and getting the resolution of an image
- Example#3606 - Rotate an image 180 degrees
- Example#3607 - imagesavealpha example
- Example#3608 - imagesetbrush example
- Example#3609 - imagesetinterpolation example
- Example#3610 - imagesetpixel example
- Example#3611 - imagesetstyle example
- Example#3612 - imagesetthickness example
- Example#3613 - imagesettile example
- Example#3614 - imagestring example
- Example#3615 - imagestringup example
- Example#3616 - Using imagesx
- Example#3617 - Using imagesy
- Example#3618 - Converting a true color image to a palette-based image
- Example#3619 - imagettfbbox example
- Example#3620 - imagettftext example
- Example#3621 - Checking for PNG support
- Example#3622 - Outputting a WBMP image
- Example#3623 - Saving the WBMP image
- Example#3624 - Outputting the image with a different foreground
- Example#3625 - Saving an WebP file
- Example#3626 - Saving an XBM file
- Example#3627 - Saving an XBM file with a different foreground color
- Example#3628 - Embedding IPTC data into a JPEG
- Example#3629 - iptcparse() used together with getimagesize
- Example#3630 - jpeg2wbmp example
- Example#3631 - png2wbmp example
- Example#3632 - Gmagick Example
- Example#3633 - Gmagick::despeckleimage example
- Example#3634 - Gmagick::setCompressionQuality
- Example#3635 - Creating a thumbnail in Imagick
- Example#3636 - Make a thumbnail of all JPG files in a directory
- Example#3637 - Creating a reflection of an image
- Example#3638 - Filling text with gradient
- Example#3639 - Read in GIF image and resize all frames
- Example#3640 - Create a PHP logo
- Example#3641 - Using Imagick::adaptiveBlurImage:
- Example#3642 - Using Imagick::adaptiveResizeImage
- Example#3643 - A Imagick::adaptiveSharpenImage example
- Example#3644 - Imagick::adaptiveThresholdImage
- Example#3645 - Imagick::addNoiseImage
- Example#3646 - Imagick::affineTransformImage
- Example#3647 - Using Imagick::annotateImage:
- Example#3648 - Imagick::appendImages example
- Example#3649 - Imagick::autoLevelImage
- Example#3650 - Imagick::blackThresholdImage
- Example#3651 - Imagick::blueShiftImage
- Example#3652 - Using Imagick::blurImage:
- Example#3653 - Imagick::borderImage
- Example#3654 - Imagick::brightnessContrastImage
- Example#3655 - Imagick::charcoalImage
- Example#3656 - Using Imagick::chopImage:
- Example#3657 - Imagick object cloning in different versions of imagick
- Example#3658 - Using Imagick::clutImage:
- Example#3659 - Imagick::colorizeImage
- Example#3660 - Imagick::colorMatrixImage
- Example#3661 - Using Imagick::commentImage:
- Example#3662 - Using Imagick::compareImageLayers
- Example#3663 - Using Imagick::compareImages:
- Example#3664 - Using Imagick::compositeImage:
- Example#3665 - Imagick::contrastImage
- Example#3666 - Imagick::convolveImage
- Example#3667 - Imagick::cropImage
- Example#3668 - Imagick::deskewImage
- Example#3669 - Imagick::despeckleImage
- Example#3670 - Using Imagick::distortImage:
- Example#3671 - Imagick::edgeImage
- Example#3672 - Imagick::embossImage
- Example#3673 - Imagick::enhanceImage
- Example#3674 - Imagick::equalizeImage
- Example#3675 - Using Imagick::evaluateImage
- Example#3676 - Using Imagick::exportImagePixels
- Example#3677 - Imagick::filter
- Example#3678 - Imagick::flipImage
- Example#3679 - Imagick::floodfillPaintImage example
- Example#3680 - Imagick::flopImage
- Example#3681 - Imagick::forwardFourierTransformImage
- Example#3682 - Imagick::frameImage
- Example#3683 - Create a sinusoidal gradient
- Example#3684 - Create a gradient from the polynomial (4x^2 - 4x + 1)
- Example#3685 - Create a complex gradient from the polynomial (4x^2 - 4x^2 + 1) modulated by a sinusoidal gradient
- Example#3686 - Imagick::fxImage
- Example#3687 - Imagick::gammaImage
- Example#3688 - Imagick::gaussianBlurImage
- Example#3689 - Imagick::getImageGeometry
- Example#3690 - Generates Imagick::getImageHistogram
- Example#3691 - Using Imagick::getImageLength:
- Example#3692 - Using Imagick::getImageProperties:
- Example#3693 - Using Imagick::getImageProperty:
- Example#3694 - Using Imagick::getIteratorIndex:
- Example#3695 - Imagick::getPixelIterator
- Example#3696 - Imagick::getPixelRegionIterator example
- Example#3697 - Imagick::haldClutImage
- Example#3698 - Imagick::identifyFormat
- Example#3699 - Example Result Format
- Example#3700 - Imagick::implodeImage
- Example#3701 - Imagick::importImagePixels example
- Example#3702 - Imagick::levelImage
- Example#3703 - Imagick::linearStretchImage
- Example#3704 - Imagick::magnifyImage
- Example#3705 - Imagick::medianFilterImage
- Example#3706 - Imagick::mergeImageLayers
- Example#3707 - Imagick::modulateImage
- Example#3708 - Convolve Imagick::morphology
- Example#3709 - Correlate Imagick::morphology
- Example#3710 - Erode Imagick::morphology
- Example#3711 - Erode Intensity Imagick::morphology
- Example#3712 - Dilate Imagick::morphology
- Example#3713 - Dilate intensity Imagick::morphology
- Example#3714 - Distance with Chebyshev kernel Imagick::morphology
- Example#3715 - Distance with Manhattan kernel Imagick::morphology
- Example#3716 - Distance with ocatagonal kernel Imagick::morphology
- Example#3717 - Distance with Euclidean kernel Imagick::morphology
- Example#3718 - Edge Imagick::morphology
- Example#3719 - Open Imagick::morphology
- Example#3720 - Open intensity Imagick::morphology
- Example#3721 - Close Imagick::morphology
- Example#3722 - Close Intensity Imagick::morphology
- Example#3723 - Smooth Imagick::morphology
- Example#3724 - Edge in Imagick::morphology
- Example#3725 - Edge out Imagick::morphology
- Example#3726 - The 'TopHat' method, or more specifically 'White Top Hat', returns the pixels that were removed by a Opening of the shape, that is the pixels that were removed to round off the points, and the connecting bridged between shapes. Imagick::morphology
- Example#3727 - The 'BottomHat' method, also known as 'Black TopHat' is the pixels that a Closing of the shape adds to the image. That is the the pixels that were used to fill in the 'holes', 'gaps', and 'bridges'. Imagick::morphology
- Example#3728 - Hit and Miss Imagick::morphology
- Example#3729 - Thinning Imagick::morphology
- Example#3730 - Thicken Imagick::morphology
- Example#3731 - Thick to generate a convex hull Imagick::morphology
- Example#3732 - Iterative morphology Imagick::morphology
- Example#3733 - Helper functon to get an image silhouette Imagick::morphology
- Example#3734 - Imagick::motionBlurImage
- Example#3735 - Imagick::negateImage
- Example#3736 - Using Imagick::newImage:
- Example#3737 - Imagick::newPseudoImage
- Example#3738 - Imagick::normalizeImage
- Example#3739 - Imagick::oilPaintImage
- Example#3740 - Using Imagick::optimizeImageLayers
- Example#3741 - Imagick::orderedPosterizeImage
- Example#3742 - Using Imagick::pingImageBlob
- Example#3743 - Using Imagick::pingImageFile
- Example#3744 - A Imagick::polaroidImage example
- Example#3745 - Imagick::posterizeImage
- Example#3746 - Imagick::quantizeImage
- Example#3747 - Using Imagick::queryFontMetrics:
- Example#3748 - Imagick::queryFonts
- Example#3749 - Imagick::queryFormats
- Example#3750 - Imagick::radialBlurImage
- Example#3751 - Imagick::raiseImage
- Example#3752 - Imagick::randomThresholdImage
- Example#3753 - Imagick::readImageBlob
- Example#3754 - Imagick::recolorImage
- Example#3755 - Imagick::reduceNoiseImage
- Example#3756 - Imagick::resampleImage
- Example#3757 - Imagick::resizeImage
- Example#3758 - Imagick::rollImage
- Example#3759 - Imagick::rotateImage
- Example#3760 - Imagick::rotationalBlurImage
- Example#3761 - Using Imagick::roundCorners:
- Example#3762 - Imagick::scaleImage
- Example#3763 - Imagick::segmentImage
- Example#3764 - Imagick::selectiveBlurImage
- Example#3765 - Imagick::separateImageChannel
- Example#3766 - Imagick::sepiaToneImage
- Example#3767 - Imagick::setCompressionQuality
- Example#3768 - A Imagick::setFont example
- Example#3769 - A Imagick::setImage example
- Example#3770 - Imagick::setImageArtifact
- Example#3771 - Imagick::setImageBias
- Example#3772 - Imagick::setImageClipMask
- Example#3773 - Imagick::setImageCompressionQuality
- Example#3774 - Modify animated Gif with Imagick::setImageDelay
- Example#3775 - Basic Imagick::setImageIterations usage
- Example#3776 - A Imagick::setImageOpacity example
- Example#3777 - Imagick::setImageOrientation
- Example#3778 - Using Imagick::setImageProperty:
- Example#3779 - Imagick::setImageResolution
- Example#3780 - Modify animated Gif with Imagick::setImageTicksPerSecond
- Example#3781 - Using Imagick::setIteratorIndex:
- Example#3782 - Attempt to reach '$extent' sizeImagick::setOption
- Example#3783 - Imagick::setOption
- Example#3784 - Imagick::setOption
- Example#3785 - A Imagick::setPointSize example
- Example#3786 - Imagick::setProgressMonitor
- Example#3787 - Imagick::setSamplingFactors
- Example#3788 - Imagick::shadeImage
- Example#3789 - Imagick::shadowImage
- Example#3790 - Imagick::sharpenImage
- Example#3791 - Imagick::shaveImage
- Example#3792 - Imagick::shearImage
- Example#3793 - Create a gradient image using Imagick::sigmoidalContrastImage
suitable for blending two images together smoothly, with the blending
defined by $contrast and $the midpoint
- Example#3794 - Imagick::sketchImage
- Example#3795 - Imagick::smushImages
- Example#3796 - Imagick::solarizeImage
- Example#3797 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
- Example#3798 - SPARSECOLORMETHOD_BILINEAR Imagick::sparseColorImage
- Example#3799 - SPARSECOLORMETHOD_SPEPARDS Imagick::sparseColorImage
- Example#3800 - SPARSECOLORMETHOD_VORONOI Imagick::sparseColorImage
- Example#3801 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
- Example#3802 - createGradientImage is used by other examples. Imagick::sparseColorImage
- Example#3803 - Imagick::spliceImage
- Example#3804 - Imagick::spreadImage
- Example#3805 - Imagick::statisticImage
- Example#3806 - Imagick::subImageMatch
- Example#3807 - Imagick::swirlImage
- Example#3808 - Imagick::textureImage
- Example#3809 - Imagick::thresholdImage
- Example#3810 - Imagick::thumbnailImage
- Example#3811 - Imagick::tintImage
- Example#3812 - Using Imagick::transformImage:
- Example#3813 - Imagick::transformImageColorspace example
- Example#3814 - Imagick::transformImageColorspace
- Example#3815 - Imagick::transparentPaintImage
- Example#3816 - Imagick::transposeImage
- Example#3817 - Imagick::transverseImage
- Example#3818 - Using Imagick::trimImage:
- Example#3819 - Imagick::uniqueImageColors
- Example#3820 - Imagick::unsharpMaskImage
- Example#3821 - Imagick::vignetteImage
- Example#3822 - WaveImage can be quite slow Imagick::waveImage
- Example#3823 - Imagick::whiteThresholdImage
- Example#3824 - ImagickDraw::affine
- Example#3825 - ImagickDraw::arc
- Example#3826 - ImagickDraw::bezier
- Example#3827 - ImagickDraw::circle
- Example#3828 - ImagickDraw::composite
- Example#3829 - ImagickDraw::ellipse
- Example#3830 - ImagickDraw::line
- Example#3831 - ImagickDraw::matte
- Example#3832 - ImagickDraw::pathCurveToQuadraticBezierAbsolute
- Example#3833 - ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute
- Example#3834 - ImagickDraw::pathCurveToQuadraticBezierSmoothRelative
- Example#3835 - ImagickDraw::pathStart
- Example#3836 - ImagickDraw::point
- Example#3837 - ImagickDraw::polygon
- Example#3838 - ImagickDraw::polyline
- Example#3839 - ImagickDraw::popDefs
- Example#3840 - ImagickDraw::push
- Example#3841 - ImagickDraw::pushPattern
- Example#3842 - ImagickDraw::rectangle
- Example#3843 - ImagickDraw::rotate
- Example#3844 - ImagickDraw::roundRectangle
- Example#3845 - ImagickDraw::scale
- Example#3846 - ImagickDraw::setClipPath
- Example#3847 - ImagickDraw::setClipRule
- Example#3848 - ImagickDraw::setClipUnits
- Example#3849 - ImagickDraw::setFillAlpha
- Example#3850 - ImagickDraw::setFillColor
- Example#3851 - ImagickDraw::setFillOpacity
- Example#3852 - ImagickDraw::setFillRule
- Example#3853 - ImagickDraw::setFont
- Example#3854 - ImagickDraw::setFontFamily
- Example#3855 - ImagickDraw::setFontSize
- Example#3856 - ImagickDraw::setFontStretch
- Example#3857 - ImagickDraw::setFontStyle
- Example#3858 - ImagickDraw::setFontWeight
- Example#3859 - ImagickDraw::setGravity
- Example#3860 - ImagickDraw::setStrokeAlpha
- Example#3861 - ImagickDraw::setStrokeAntialias
- Example#3862 - ImagickDraw::setStrokeColor
- Example#3863 - ImagickDraw::setStrokeDashArray
- Example#3864 - ImagickDraw::setStrokeDashOffset
- Example#3865 - ImagickDraw::setStrokeLineCap
- Example#3866 - ImagickDraw::setStrokeLineJoin
- Example#3867 - ImagickDraw::setStrokeMiterLimit
- Example#3868 - ImagickDraw::setStrokeOpacity
- Example#3869 - ImagickDraw::setStrokeWidth
- Example#3870 - ImagickDraw::setTextAlignment
- Example#3871 - ImagickDraw::setTextAntialias
- Example#3872 - ImagickDraw::setTextDecoration
- Example#3873 - ImagickDraw::setTextUnderColor
- Example#3874 - ImagickDraw::setVectorGraphics
- Example#3875 - ImagickDraw::setViewBox
- Example#3876 - ImagickDraw::skewX
- Example#3877 - ImagickDraw::skewY
- Example#3878 - ImagickDraw::translate
- Example#3879 - ImagickPixel::construct
- Example#3880 - Basic Imagick::getColor usage
- Example#3881 - Basic Imagick::getColorAsString usage
- Example#3882 - ImagickPixel getColorCount
- Example#3883 - Basic Imagick::getColorValue usage
- Example#3884 - ImagickPixel::getColorValueQuantum
- Example#3885 - Basic Imagick::getHSL example
- Example#3886 - ImagickPixel::isSimilar
- Example#3887 - ImagickPixel::setColor
- Example#3888 - Basic Imagick::setColorValue usage
- Example#3889 - ImagickPixel::setColorValueQuantum
- Example#3890 - Use ImagickPixel::setHSL to modify a color
- Example#3891 - ImagickPixelIterator::clear
- Example#3892 - ImagickPixelIterator::construct
- Example#3893 - ImagickPixelIterator::getNextIteratorRow
- Example#3894 - ImagickPixelIterator::resetIterator
- Example#3895 - ImagickPixelIterator::setIteratorRow
- Example#3896 - ImagickKernel::addKernel
- Example#3897 - ImagickKernel::addUnityKernel
- Example#3898 - ImagickKernel::addUnityKernel
- Example#3899 - ImagickKernel::fromBuiltin
- Example#3900 - ImagickKernel::fromMatrix
- Example#3901 - ImagickKernel::getMatrix
- Example#3902 - ImagickKernel::scale
- Example#3903 - ImagickKernel::separate
- Example#3904 - imap_append example
- Example#3905 - imap_check example
- Example#3906 - imap_createmailbox example
- Example#3907 - imap_delete example
- Example#3908 - imap_fetch_overview example
- Example#3909 - imap_gc example
- Example#3910 - imap_get_quota example
- Example#3911 - imap_get_quota 4.3 or greater example
- Example#3912 - imap_get_quotaroot example
- Example#3913 - imap_getacl example
- Example#3914 - imap_getmailboxes example
- Example#3915 - imap_list example
- Example#3916 - imap_mail_compose example
- Example#3917 - imap_mailboxmsginfo example
- Example#3918 - imap_mime_header_decode example
- Example#3919 - Different use of imap_open
- Example#3920 - imap_open example
- Example#3921 - imap_ping Example
- Example#3922 - imap_reopen example
- Example#3923 - imap_rfc822_parse_adrlist example
- Example#3924 - imap_rfc822_write_address example
- Example#3925 - imap_search example
- Example#3926 - imap_set_quota example
- Example#3927 - imap_setflag_full example
- Example#3928 - imap_status example
- Example#3929 - imap_thread Example
- Example#3930 - imap_timeout example
- Example#3931 - Calcularea hash-ului și înscrierea în listă a unui utilizator
- Example#3932 - Trimiterea mesajelor.
- Example#3933 - Trimiterea unui mesaj cu antete suplimentare.
- Example#3934 - Trimiterea unui mesaj cu un parametru suplimentar în linia de
comandă.
- Example#3935 - Transmiterea unui mesaj HTML
- Example#3936 - mailparse_determine_best_xfer_encoding example
- Example#3937 - mailparse_rfc822_parse_addresses example
- Example#3938 - mailparse_stream_encode example
- Example#3939 - mailparse_uudecode_all example
- Example#3940 - bcadd example
- Example#3941 - bccomp example
- Example#3942 - bcdiv example
- Example#3943 - bcmod example
- Example#3944 - bcmul example
- Example#3945 - bcpow example
- Example#3946 - bcpow scale example
- Example#3947 - bcscale example
- Example#3948 - bcsqrt example
- Example#3949 - bcsub example
- Example#3950 - Exemplu de funcție factorială utilizând GMP
- Example#3951 - gmp_abs example
- Example#3952 - gmp_add example
- Example#3953 - gmp_and example
- Example#3954 - gmp_clrbit example
- Example#3955 - gmp_cmp example
- Example#3956 - gmp_com example
- Example#3957 - gmp_div_q example
- Example#3958 - Division of GMP numbers
- Example#3959 - gmp_div_r example
- Example#3960 - gmp_divexact example
- Example#3961 - gmp_export example
- Example#3962 - gmp_fact example
- Example#3963 - gmp_gcd example
- Example#3964 - Solving a linear Diophantine equation
- Example#3965 - gmp_hamdist example
- Example#3966 - gmp_import example
- Example#3967 - Creating GMP number
- Example#3968 - gmp_intval example
- Example#3969 - gmp_invert example
- Example#3970 - gmp_jacobi example
- Example#3971 - gmp_legendre example
- Example#3972 - gmp_mod example
- Example#3973 - gmp_mul example
- Example#3974 - gmp_neg example
- Example#3975 - gmp_nextprime example
- Example#3976 - gmp_or example
- Example#3977 - gmp_perfect_square example
- Example#3978 - gmp_popcount example
- Example#3979 - gmp_pow example
- Example#3980 - gmp_powm example
- Example#3981 - gmp_prob_prime example
- Example#3982 - gmp_random_bits example
- Example#3983 - gmp_random_range example
- Example#3984 - gmp_random_seed example
- Example#3985 - gmp_random example
- Example#3986 - gmp_scan0 example
- Example#3987 - gmp_scan1 example
- Example#3988 - gmp_setbit example - 0 index
- Example#3989 - gmp_setbit example - 1 index
- Example#3990 - gmp_setbit example - clearing a bit
- Example#3991 - gmp_sign example
- Example#3992 - gmp_sqrt example
- Example#3993 - gmp_sqrtrem example
- Example#3994 - Converting a GMP number to a string
- Example#3995 - gmp_sub example
- Example#3996 - gmp_testbit example
- Example#3997 - gmp_xor example
- Example#3998 - Using Lapack::eigenValues:
- Example#3999 - Using Lapack::leastSquaresByFactorisation:
- Example#4000 - Using Lapack::leastSquaresBySVD:
- Example#4001 - Using Lapack::pseudoInverse:
- Example#4002 - Using Lapack::singularValues:
- Example#4003 - Using Lapack::singularValues:
- Example#4004 - abs example
- Example#4005 - base_convert example
- Example#4006 - bindec example
- Example#4007 - bindec interprets input as unsigned integers
- Example#4008 - ceil example
- Example#4009 - cos example
- Example#4010 - decbin example
- Example#4011 - dechex example
- Example#4012 - dechex example with large integers
- Example#4013 - decoct example
- Example#4014 - deg2rad example
- Example#4015 - exp example
- Example#4016 - floor example
- Example#4017 - Using fmod
- Example#4018 - hexdec example
- Example#4019 - intdiv example
- Example#4020 - is_nan example
- Example#4021 - Example uses of max
- Example#4022 - Example uses of min
- Example#4023 - Calculate a random floating-point number
- Example#4024 - mt_rand example
- Example#4025 - mt_srand example
- Example#4026 - octdec example
- Example#4027 - pi example
- Example#4028 - Some examples of pow
- Example#4029 - rad2deg example
- Example#4030 - rand example
- Example#4031 - round examples
- Example#4032 - mode examples
- Example#4033 - mode with precision examples
- Example#4034 - sin example
- Example#4035 - sqrt example
- Example#4036 - srand example
- Example#4037 - tan example
- Example#4038 - Evaluating a FDF document
- Example#4039 - Adding JavaScript code to a FDF
- Example#4040 - Populating a PDF document
- Example#4041 - Storing an uploaded file
- Example#4042 - Detecting all fieldnames in a FDF
- Example#4043 - Accessing the form data
- Example#4044 - Accessing the form data
- Example#4045 - Retrieving FDF as a string
- Example#4046 - Passing FDF data to a second form
- Example#4047 - gnupg clearsign example (procedural)
- Example#4048 - gnupg clearsign example (OO)
- Example#4049 - keylistiterator
- Example#4050 - Procedural gnupg_adddecryptkey example
- Example#4051 - OO gnupg_adddecryptkey example
- Example#4052 - Procedural gnupg_addencryptkey example
- Example#4053 - OO gnupg_addencryptkey example
- Example#4054 - Procedural gnupg_addsignkey example
- Example#4055 - OO gnupg_addsignkey example
- Example#4056 - Procedural gnupg_cleardecryptkeys example
- Example#4057 - OO gnupg_cleardecryptkeys example
- Example#4058 - Procedural gnupg_clearencryptkeys example
- Example#4059 - OO gnupg_clearencryptkeys example
- Example#4060 - Procedural gnupg_clearsignkeys example
- Example#4061 - OO gnupg_clearsignkeys example
- Example#4062 - Procedural gnupg_decrypt example
- Example#4063 - OO gnupg_encrypt example
- Example#4064 - Procedural gnupg_decryptverify example
- Example#4065 - OO gnupg_decryptverify example
- Example#4066 - Procedural gnupg_encrypt example
- Example#4067 - OO gnupg_encrypt example
- Example#4068 - Procedural gnupg_encryptsign example
- Example#4069 - OO gnupg_encryptsign example
- Example#4070 - Procedural gnupg_export example
- Example#4071 - OO gnupg_export example
- Example#4072 - Procedural gnupg_geterror example
- Example#4073 - OO gnupg_geterror example
- Example#4074 - Procedural gnupg_getprotocol example
- Example#4075 - OO gnupg_getprotocol example
- Example#4076 - Procedural gnupg_import example
- Example#4077 - OO gnupg_import example
- Example#4078 - Procedural gnupg_init example
- Example#4079 - OO gnupg initializer example
- Example#4080 - Procedural gnupg_keyinfo example
- Example#4081 - OO gnupg_keyinfo example
- Example#4082 - Procedural gnupg_setarmor example
- Example#4083 - OO gnupg_setarmor example
- Example#4084 - Procedural gnupg_seterrormode example
- Example#4085 - OO gnupg_seterrormode example
- Example#4086 - Procedural gnupg_setsignmode example
- Example#4087 - OO gnupg_setsignmode example
- Example#4088 - Procedural gnupg_sign example
- Example#4089 - OO gnupg_sign example
- Example#4090 - Procedural gnupg_verify example
- Example#4091 - OO gnupg_verify example
- Example#4092 - Fancy "Hello world"
- Example#4093 - swfaction example
- Example#4094 - swfaction example
- Example#4095 - swfaction example
- Example#4096 - swfsprite example
- Example#4097 - ming_useswfversion example
- Example#4098 - Importing a DBL file
- Example#4099 - Using an alpha mask
- Example#4100 - Usual interactions with buttons
- Example#4101 - Drag example
- Example#4102 - swfdisplayitem::multcolor example
- Example#4103 - swfdisplayitem::rotateto example
- Example#4104 - swfdisplayitem::setname example
- Example#4105 - swfgradient example
- Example#4106 - swfmorph example
- Example#4107 - Displaying your $movie in a browser
- Example#4108 - Streaming example
- Example#4109 - SWFShape::addFill example
- Example#4110 - swfshape example
- Example#4111 - swfshape::setline example
- Example#4112 - swftext example
- Example#4113 - Hello World example from PDFlib distribution for PHP 4
- Example#4114 - Hello World example from PDFlib distribution for PHP 5
- Example#4115 - Creating and using a pattern
- Example#4116 - Creating and using a template
- Example#4117 - Hyphennate a text
- Example#4118 - Drawing a rectangle
- Example#4119 - Creating and using a spot color
- Example#4120 - Rotation of the coordinate system
- Example#4121 - Placing text at a given position
- Example#4122 - Drawing a dashed line
- Example#4123 - Translation of the coordinate system
- Example#4124 - Basic RPMReader Example
- Example#4125 - rpm_close example
- Example#4126 - rpm_get_tag example
- Example#4127 - rpm_is_valid example
- Example#4128 - rpm_open example
- Example#4129 - rpm_version example
- Example#4130 - Incorrect requests
- Example#4131 - Calling request from a request callback
- Example#4132 - Calling request from a request callback
- Example#4133 - Using eio with libevent
- Example#4134 - Cancelling a request
- Example#4135 - Calling eio_chmod
- Example#4136 - Making a custom request
- Example#4137 - Grouping requests
- Example#4138 - Using eio with libevent extension
- Example#4139 - Using eio with event extension
- Example#4140 - eio_cancel example
- Example#4141 - eio_custom example
- Example#4142 - eio_event_loop example
- Example#4143 - eio_lstat example
- Example#4144 - Using eio with libevent
- Example#4145 - Grouping requests
- Example#4146 - eio_grp example
- Example#4147 - eio_link example
- Example#4148 - eio_lstat example
- Example#4149 - eio_mkdir example
- Example#4150 - eio_mknod example
- Example#4151 - eio_nreqs example
- Example#4152 - eio_open example
- Example#4153 - eio_poll example
- Example#4154 - eio_read example
- Example#4155 - eio_readdir example
- Example#4156 - eio_readlink example
- Example#4157 - eio_realpath example
- Example#4158 - eio_rename example
- Example#4159 - eio_rmdir example
- Example#4160 - eio_stat example
- Example#4161 - eio_statvfs example
- Example#4162 - eio_symlink example
- Example#4163 - Simple timers
- Example#4164 - Periodic timer. Tick each 10.5 seconds
- Example#4165 - Periodic timer. Use reschedule callback
- Example#4166 - Periodic timer. Tick every 10.5 seconds starting at now
- Example#4167 - Wait until STDIN is readable
- Example#4168 - Use some async I/O to access a socket
- Example#4169 - Embedding one loop into another
- Example#4170 - Embedding loop created with kqueue backend into the default loop
- Example#4171 - Handle SIGTERM signal
- Example#4172 - Monitor changes of /var/log/messages
- Example#4173 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
- Example#4174 - Process status changes
- Example#4175 - Using reschedule callback
- Example#4176 - Embedding loop created with kqueue backend into the default loop
- Example#4177 - Embedding one loop into another
- Example#4178 - Embedding loop created with kqueue backend into the default loop
- Example#4179 - Embedding loop created with kqueue backend into the default loop
- Example#4180 - Periodic timer. Use reschedule callback
- Example#4181 - Periodic timer. Tick every 10.5 seconds starting at now
- Example#4182 - Hourly watcher
- Example#4183 - Handle SIGTERM signal
- Example#4184 - Monitor changes of /var/log/messages
- Example#4185 - Monitor changes of /var/log/messages
- Example#4186 - Simple timers
- Example#4187 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
- Example#4188 - Register an I/O watcher for some UDP socket but do not keep the
event loop from running just because of that watcher.
- Example#4189 - Expect Usage Example
- Example#4190 - Another Expect Usage Example
- Example#4191 - expect_expectl example
- Example#4192 - expect_popen example
- Example#4193 - polling STDIN using basic API
- Example#4194 - polling STDIN using buffered event API
- Example#4195 - Process Control Example
- Example#4196 - pcntl_fork example
- Example#4197 - pcntl_signal_dispatch example
- Example#4198 - pcntl_signal example
- Example#4199 - pcntl_sigprocmask example
- Example#4200 - pcntl_sigwaitinfo example
- Example#4201 - posix_access example
- Example#4202 - posix_ctermid example
- Example#4203 - posix_get_last_error example
- Example#4204 - posix_getcwd example
- Example#4205 - posix_getegid example
- Example#4206 - posix_geteuid example
- Example#4207 - posix_getgid example
- Example#4208 - Example use of posix_getgrgid
- Example#4209 - Example use of posix_getgrnam
- Example#4210 - Example use of posix_getgroups
- Example#4211 - Example use of posix_getlogin
- Example#4212 - Example use of posix_getpgid
- Example#4213 - Example use of posix_getpid
- Example#4214 - Example use of posix_getppid
- Example#4215 - Example use of posix_getpwnam
- Example#4216 - Example use of posix_getpwuid
- Example#4217 - Example use of posix_getrlimit
- Example#4218 - Example use of posix_getsid
- Example#4219 - Example use of posix_getuid
- Example#4220 - A posix_mknod example
- Example#4221 - posix_setegid example
- Example#4222 - posix_setgid example
- Example#4223 - posix_setuid example
- Example#4224 - posix_strerror example
- Example#4225 - Example use of posix_times
- Example#4226 - Example use of posix_uname
- Example#4227 - escapeshellarg example
- Example#4228 - escapeshellcmd example
- Example#4229 - An exec example
- Example#4230 - Using proc_open to set the process priority to high
- Example#4231 - A proc_open example
- Example#4232 - A shell_exec example
- Example#4233 - system example
- Example#4234 - Fetch a chunk of the property table
- Example#4235 - Counting the properties of an object
- Example#4236 - Runtime inheritance
- Example#4237 - Thread safe objects from closures
- Example#4238 - Detecting fatal errors in Threads
- Example#4239 - Detect the state of the referenced object
- Example#4240 - Detect the state of the referenced object
- Example#4241 - Detect the state of the referenced object
- Example#4242 - Locking Object Properties
- Example#4243 - Merging into the property table of a threaded object
- Example#4244 - Notifications and Waiting
- Example#4245 - Popping the last item from the property table of a threaded object
- Example#4246 - Shifting the first item from the property table of a threaded object
- Example#4247 - Synchronizing
- Example#4248 - Locking the property table of a threaded object
- Example#4249 - Notifications and Waiting
- Example#4250 - Return the identity of the Thread or Process that created the referenced Thread
- Example#4251 - Return the currently executing Thread
- Example#4252 - Return the identity of the currently executing Thread
- Example#4253 - Return the identity of the referenced Thread
- Example#4254 - Execute in the global scope
- Example#4255 - Detect the state of the referenced Thread
- Example#4256 - Tell if the referenced Thread was started
- Example#4257 - Join with the referenced Thread
- Example#4258 - Kill the referenced Thread
- Example#4259 - Starting Threads
- Example#4260 - Returns the number of objects currently waiting to be executed by the referenced Worker
- Example#4261 - Detect the state of a Worker
- Example#4262 - Detect the state of a Worker
- Example#4263 - Shutdown the referenced Worker
- Example#4264 - Stacking objects for execution in Workers
- Example#4265 - Removing objects from the stack of Workers
- Example#4266 - protected method example: protected methods can only be executed by one Thread at a time.
- Example#4267 - private method example: private methods may only be executed by the Threaded object during execution
- Example#4268 - Creating Pools
- Example#4269 - Creating Pools
- Example#4270 - Submitting Tasks
- Example#4271 - Submitting Tasks
- Example#4272 - Mutex Creation and Destruction
- Example#4273 - Mutex Creation and Destruction
- Example#4274 - Mutex Locking and Unlocking
- Example#4275 - Mutex Locking and Unlocking
- Example#4276 - Mutex Locking and Unlocking
- Example#4277 - Condition Broadcasting
- Example#4278 - Condition Creation and Destruction
- Example#4279 - Condition Creation and Destruction
- Example#4280 - Condition Signalling
- Example#4281 - Waiting for Conditions
- Example#4282 -
- Example#4283 - Shared Memory Operations Overview
- Example#4284 - Closing shared memory block
- Example#4285 - Deleting shared memory block
- Example#4286 - Create a new shared memory block
- Example#4287 - Reading shared memory block
- Example#4288 - Getting the size of the shared memory block
- Example#4289 - Writing to shared memory block
- Example#4290 - SyncMutex::__construct named mutex with lock timeout example
- Example#4291 - SyncMutex::__construct unnamed mutex example
- Example#4292 - SyncMutex::lock example
- Example#4293 - SyncMutex::unlock example
- Example#4294 - SyncSemaphore::__construct example
- Example#4295 - SyncSemaphore::lock example
- Example#4296 - SyncSemaphore::unlock example
- Example#4297 - SyncEvent::__construct example
- Example#4298 - SyncEvent::fire example
- Example#4299 - SyncEvent::reset example
- Example#4300 - SyncEvent::wait example
- Example#4301 - SyncReaderWriter::__construct example
- Example#4302 - SyncReaderWriter::readlock example
- Example#4303 - SyncReaderWriter::readunlock example
- Example#4304 - SyncReaderWriter::writelock example
- Example#4305 - SyncReaderWriter::writeunlock example
- Example#4306 - SyncSharedMemory::__construct example
- Example#4307 - SyncSharedMemory::first example
- Example#4308 - SyncSharedMemory::__construct example
- Example#4309 - SyncSharedMemory::size example
- Example#4310 - SyncSharedMemory::write example
- Example#4311 - A geoip_asnum_by_name example
- Example#4312 - A geoip_continent_code_by_name example
- Example#4313 - A geoip_country_code_by_name example
- Example#4314 - A geoip_country_code3_by_name example
- Example#4315 - A geoip_country_name_by_name example
- Example#4316 - A geoip_database_info example
- Example#4317 - A geoip_db_avail example
- Example#4318 - A geoip_db_filename example
- Example#4319 - A geoip_db_get_all_info example
- Example#4320 - A geoip_db_get_all_info example
- Example#4321 - A geoip_domain_by_name example
- Example#4322 - A geoip_id_by_name example
- Example#4323 - A geoip_isp_by_name example
- Example#4324 - A geoip_netspeedcell_by_name example
- Example#4325 - A geoip_org_by_name example
- Example#4326 - A geoip_record_by_name example
- Example#4327 - A geoip_region_by_name example
- Example#4328 - A geoip_region_name_by_code example using region code for US/Canada
- Example#4329 - A geoip_region_name_by_code example using FIPS codes
- Example#4330 - A geoip_setup_custom_directory example
- Example#4331 - A geoip_time_zone_by_country_and_region example using region code for US/Canada
- Example#4332 - A geoip_time_zone_by_country_and_region example using FIPS codes
- Example#4333 - xor.data file
- Example#4334 - Simple train
- Example#4335 - Simple test
- Example#4336 - fann_create_train_from_callback example
- Example#4337 - fann_read_train_from_file example
- Example#4338 - JsonSerializable::jsonSerialize example
returning an array
- Example#4339 - JsonSerializable::jsonSerialize example
returning an associative array
- Example#4340 - JsonSerializable::jsonSerialize example
returning an integer
- Example#4341 - JsonSerializable::jsonSerialize example
returning a string
- Example#4342 - Exemple json_decode
- Example#4343 - Accesarea proprietăților nevalide ale unui obiect
- Example#4344 - Greșeli tipice la utilizarea json_decode
- Example#4345 - Erori la parametrul depth
- Example#4346 - json_decode cu numere întregi mari
- Example#4347 - Un exemplu json_encode
- Example#4348 - Un exemplu json_encode ce demonstrează utilizarea opțiunilor
- Example#4349 - Exemplu a opțiunii JSON_NUMERIC_CHECK
- Example#4350 - Un exemplu cu tablou secvențial versus un tablou non-secvențial
- Example#4351 - Exemplu cu opțiunea JSON_PRESERVE_ZERO_FRACTION
- Example#4352 - Exemplu json_last_error
- Example#4353 - Exemplu json_last_error cu json_encode
- Example#4354 - Judy array example
- Example#4355 - Lua::assignexample
- Example#4356 - Lua::callexample
- Example#4357 - Lua::evalexample
- Example#4358 - Lua::registerCallbackexample
- Example#4359 - LuaClosure::__invokeexample
- Example#4360 - constant example
- Example#4361 - Defining Constants
- Example#4362 - Checking Constants
- Example#4363 - eval example - simple text merge
- Example#4364 - exit example
- Example#4365 - exit status example
- Example#4366 - Shutdown functions and destructors run regardless
- Example#4367 - Listing all information about the users browser
- Example#4368 - A __halt_compiler example
- Example#4369 - highlight_string example
- Example#4370 - A ignore_user_abort example
- Example#4371 - pack example
- Example#4372 - php_strip_whitespace example
- Example#4373 - sleep example
- Example#4374 - A sys_getloadavg example
- Example#4375 - time_nanosleep example
- Example#4376 - A time_sleep_until example
- Example#4377 - uniqid Example
- Example#4378 - unpack example
- Example#4379 - unpack example with a repeater
- Example#4380 - unpack example with unnamed keys
- Example#4381 - usleep example
- Example#4382 - parsekit_compile_file example
- Example#4383 - parsekit_compile_string example
- Example#4384 - parsekit_func_arginfo example
- Example#4385 - SplDoublyLinkedList::__construct example
- Example#4386 - SplStack::__construct example
- Example#4387 - SplQueue::__construct example
- Example#4388 - Efficiently handling tasks with SplQueue
- Example#4389 - SplFixedArray usage example
- Example#4390 - SplFixedArray::__construct example
- Example#4391 - SplFixedArray::count example
- Example#4392 - SplFixedArray::fromArray example
- Example#4393 - SplFixedArray::getSize example
- Example#4394 - SplFixedArray::setSize example
- Example#4395 - SplFixedArray::toArray example
- Example#4396 - SplObjectStorage as a set
- Example#4397 - SplObjectStorage as a map
- Example#4398 - SplObjectStorage::addAll example
- Example#4399 - SplObjectStorage::attach example
- Example#4400 - SplObjectStorage::contains example
- Example#4401 - SplObjectStorage::count example
- Example#4402 - SplObjectStorage::current example
- Example#4403 - SplObjectStorage::detach example
- Example#4404 - SplObjectStorage::getHash example
- Example#4405 - SplObjectStorage::getInfo example
- Example#4406 - SplObjectStorage::key example
- Example#4407 - SplObjectStorage::next example
- Example#4408 - SplObjectStorage::offsetExists example
- Example#4409 - SplObjectStorage::offsetGet example
- Example#4410 - SplObjectStorage::offsetSet example
- Example#4411 - SplObjectStorage::offsetUnset example
- Example#4412 - SplObjectStorage::removeAll example
- Example#4413 - SplObjectStorage::removeAllExcept example
- Example#4414 - SplObjectStorage::rewind example
- Example#4415 - SplObjectStorage::serialize example
- Example#4416 - SplObjectStorage::setInfo example
- Example#4417 - SplObjectStorage::unserialize example
- Example#4418 - SplObjectStorage::valid example
- Example#4419 - AppendIterator::append example
- Example#4420 - Iterating AppendIterator with foreach
- Example#4421 - Iterating AppendIterator with the AppendIterator API
- Example#4422 - AppendIterator::getInnerIterator example
- Example#4423 - AppendIterator.getIteratorIndex basic example
- Example#4424 - AppendIterator::key basic example
- Example#4425 - ArrayIterator::current example
- Example#4426 - ArrayIterator::key example
- Example#4427 - ArrayIterator::next example
- Example#4428 - ArrayIterator::rewind example
- Example#4429 - ArrayIterator::valid example
- Example#4430 - CachingIterator::getCache example
- Example#4431 - Available callback arguments
- Example#4432 - Callback basic examples
- Example#4433 - A DirectoryIterator::__construct example
- Example#4434 - A DirectoryIterator::current example
- Example#4435 - A DirectoryIterator::getATime example
- Example#4436 - A DirectoryIterator::getBasename example
- Example#4437 - DirectoryIterator::getCTime example
- Example#4438 - DirectoryIterator::getExtension example
- Example#4439 -
- Example#4440 - A DirectoryIterator::getFilename example
- Example#4441 - DirectoryIterator::getGroup example
- Example#4442 - DirectoryIterator::getInode example
- Example#4443 - A DirectoryIterator::getMTime example
- Example#4444 - DirectoryIterator::getOwner example
- Example#4445 - DirectoryIterator::getPath example
- Example#4446 - DirectoryIterator::getPathname example
- Example#4447 - DirectoryIterator::getPerms example
- Example#4448 - DirectoryIterator::getSize example
- Example#4449 - DirectoryIterator::getType example
- Example#4450 - DirectoryIterator::isDir example
- Example#4451 - A DirectoryIterator::isDot example
- Example#4452 - DirectoryIterator::isExecutable example
- Example#4453 - DirectoryIterator::isFile example
- Example#4454 - A DirectoryIterator::isLink example
- Example#4455 - DirectoryIterator::isReadable example
- Example#4456 - DirectoryIterator::isWritable example
- Example#4457 - A DirectoryIterator::key example
- Example#4458 - DirectoryIterator::next example
- Example#4459 - DirectoryIterator::rewind example
- Example#4460 - DirectoryIterator::seek example
- Example#4461 - A DirectoryIterator::__toString example
- Example#4462 - A DirectoryIterator::valid example
- Example#4463 - FilesystemIterator::__construct example
- Example#4464 - FilesystemIterator::current example
- Example#4465 - FilesystemIterator::key example
- Example#4466 - FilesystemIterator::next example
- Example#4467 - FilesystemIterator::rewind example
- Example#4468 - FilesystemIterator::key example
- Example#4469 - FilterIterator::accept example
- Example#4470 - GlobIterator example
- Example#4471 - GlobIterator::count example
- Example#4472 - InfiniteIterator::__construct example
- Example#4473 - LimitIterator usage example
- Example#4474 - LimitIterator::__construct example
- Example#4475 - LimitIterator::getPosition example
- Example#4476 - Iterating a MultipleIterator
- Example#4477 - NoRewindIterator::__construct example
- Example#4478 - NoRewindIterator::rewind example
- Example#4479 - RecursiveArrayIterator::getChildren example
- Example#4480 - RecursiveArrayIterator::hasChildren example
- Example#4481 - Available callback arguments
- Example#4482 - Recursive callback basic example
- Example#4483 - RecursiveCallbackFilterIterator::hasChildren basic usage
- Example#4484 - RecursiveDirectoryIterator example
- Example#4485 - Basic RecursiveFilterIterator example
- Example#4486 - RecursiveFilterIterator example
- Example#4487 - Iterating a RecursiveIteratorIterator
- Example#4488 - RecursiveRegexIterator::__construct example
- Example#4489 - RecursiveRegexIterator::getChildren example
- Example#4490 - RecursiveRegexIterator::hasChildren example
- Example#4491 - RegexIterator::accept example
- Example#4492 - RegexIterator::__construct example
- Example#4493 - RegexIterator::getFlags example
- Example#4494 - RegexIterator::getMode example
- Example#4495 - RegexIterator::getPregFlags example
- Example#4496 - RegexIterator::setFlags example
- Example#4497 - RegexIterator::setMode example
- Example#4498 - RegexIterator::setPregFlags example
- Example#4499 - Countable::count example
- Example#4500 - Basic usage
- Example#4501 - SeekableIterator::seek example
- Example#4502 - class_implements example
- Example#4503 - class_parents example
- Example#4504 - class_uses example
- Example#4505 - iterator_apply example
- Example#4506 - iterator_count example
- Example#4507 - iterator_count modifies position
- Example#4508 - iterator_count in foreach loops
- Example#4509 - iterator_to_array example
- Example#4510 - spl_autoload_register as a replacement for an __autoload function
- Example#4511 - spl_autoload_register example where the class is not loaded
- Example#4512 - spl_classes example
- Example#4513 - A spl_object_hash example
- Example#4514 - SplFileInfo::__construct example
- Example#4515 - SplFileInfo::getBasename example
- Example#4516 - SplFileInfo::getCTime example
- Example#4517 - SplFileInfo::getExtension example
- Example#4518 -
- Example#4519 - SplFileInfo::getFilename example
- Example#4520 - SplFileInfo::getGroup example
- Example#4521 - SplFileInfo::getLinkTarget example
- Example#4522 - SplFileInfo::getOwner example
- Example#4523 - SplFileInfo::getPath example
- Example#4524 - SplFileInfo::getPathInfo example
- Example#4525 - SplFileInfo::getPathname example
- Example#4526 - SplFileInfo::getPerms example
- Example#4527 - SplFileInfo::getRealPath example
- Example#4528 - SplFileInfo::getType example
- Example#4529 - SplFileInfo::isDir example
- Example#4530 - SplFileInfo::isExecutable example
- Example#4531 - SplFileInfo::isFile example
- Example#4532 - SplFileInfo::isLink example
- Example#4533 - SplFileInfo::isReadable example
- Example#4534 - SplFileInfo::openFile example
- Example#4535 - SplFileInfo::setFileClass example
- Example#4536 - SplFileInfo::setFileClass example
- Example#4537 - SplFileInfo::__toString example
- Example#4538 - SplFileObject::__construct example
- Example#4539 - SplFileObject::current example
- Example#4540 - SplFileObject::eof example
- Example#4541 - SplFileObject::fflush example
- Example#4542 - SplFileObject::fgetc example
- Example#4543 - SplFileObject::fgetcsv example
- Example#4544 - SplFileObject::READ_CSV example
- Example#4545 - SplFileObject::fgets example
- Example#4546 - SplFileObject::fgetss example
- Example#4547 - SplFileObject::flock example
- Example#4548 - SplFileObject::fpassthru example
- Example#4549 - SplFileObject::fputcsv example
- Example#4550 - SplFileObject::fread example
- Example#4551 - SplFileObject::fscanf example
- Example#4552 - SplFileObject::fseek example
- Example#4553 - SplFileObject::fstat example
- Example#4554 - SplFileObject::ftell example
- Example#4555 - SplFileObject::ftruncate example
- Example#4556 - SplFileObject::fwrite example
- Example#4557 - SplFileObject::getCsvControl example
- Example#4558 - SplFileObject::getFlags example
- Example#4559 - SplFileObject::getMaxLineLen example
- Example#4560 - SplFileObject::key example
- Example#4561 - SplFileObject::key example with SplFileObject::setMaxLineLen
- Example#4562 - SplFileObject::next example
- Example#4563 - SplFileObject::rewind example
- Example#4564 - SplFileObject::seek example
- Example#4565 - SplFileObject::setCsvControl example
- Example#4566 - SplFileObject::setFlags example
- Example#4567 - SplFileObject::setMaxLineLen example
- Example#4568 - SplFileObject::valid example
- Example#4569 - SplTempFileObject example
- Example#4570 - ArrayObject::append example
- Example#4571 - ArrayObject::asort example
- Example#4572 - ArrayObject::__construct example
- Example#4573 - ArrayObject::count example
- Example#4574 - ArrayObject::exchangeArray example
- Example#4575 - ArrayObject::getArrayCopy example
- Example#4576 - ArrayObject::getFlags example
- Example#4577 - ArrayObject::getIterator example
- Example#4578 - ArrayObject::getIteratorClass example
- Example#4579 - ArrayObject::ksort example
- Example#4580 - ArrayObject::natcasesort example
- Example#4581 - ArrayObject::natsort example
- Example#4582 - ArrayObject::offsetExists example
- Example#4583 - ArrayObject::offsetGet example
- Example#4584 - ArrayObject::offsetSet example
- Example#4585 - ArrayObject::offsetUnset example
- Example#4586 - ArrayObject::serialize example
- Example#4587 - ArrayObject::setFlags example
- Example#4588 - ArrayObject::setIteratorClass example
- Example#4589 - ArrayObject::uasort example
- Example#4590 - ArrayObject::uksort example
- Example#4591 - SplInt usage example
- Example#4592 - SplFloat usage example
- Example#4593 - SplEnum usage example
- Example#4594 - SplEnum::getConstList example
- Example#4595 - SplBool usage example
- Example#4596 - SplString usage example
- Example#4597 - Using file_get_contents
to retrieve data from multiple sources
- Example#4598 - Making a POST request to an https server
- Example#4599 - Writing data to a compressed file
- Example#4600 - A Stream for reading/writing global variables
- Example#4601 - Listing files from tar archives
- Example#4602 - stream_bucket_prepend examples
- Example#4603 - Using stream_context_create
- Example#4604 - Using stream_context_get_default
- Example#4605 - stream_context_get_options example
- Example#4606 - stream_context_get_params example
- Example#4607 - stream_context_set_default example
- Example#4608 - A stream_copy_to_stream example
- Example#4609 - Controlling where filters are applied
- Example#4610 - Filter for capitalizing characters on foo-bar.txt stream
- Example#4611 - Registering a generic filter class to match multiple filter names.
- Example#4612 - Dynamicly refiltering a stream
- Example#4613 - stream_get_contents example
- Example#4614 - Using stream_get_filters
- Example#4615 - stream_get_meta_data example
- Example#4616 - Using stream_get_transports
- Example#4617 - stream_get_wrappers example
- Example#4618 - Checking for the existence of a stream wrapper
- Example#4619 - stream_is_local example
- Example#4620 - stream_notification_callback example
- Example#4621 - Simple progressbar for commandline download client
- Example#4622 - stream_resolve_include_path example
- Example#4623 - stream_select Example
- Example#4624 - stream_set_timeout example
- Example#4625 - stream_set_write_buffer example
- Example#4626 - stream_socket_client example
- Example#4627 - Using UDP connection
- Example#4628 - stream_socket_enable_crypto example
- Example#4629 - A stream_socket_pair example
- Example#4630 - stream_socket_recvfrom example
- Example#4631 - stream_socket_sendto Example
- Example#4632 - Using TCP server sockets
- Example#4633 - Using UDP server sockets
- Example#4634 - A stream_socket_shutdown example
- Example#4635 - How to register a stream wrapper
- Example#4636 - Basic Tidy usage
- Example#4637 - tidy::getBody example
- Example#4638 - tidy::cleanrepair example
- Example#4639 - tidy::__construct example
- Example#4640 - tidy::diagnose example
- Example#4641 - tidy_get_error_buffer example
- Example#4642 - tidy::getConfig example
- Example#4643 - tidy_getopt example
- Example#4644 - Print all options along with their documentation and default value
- Example#4645 - tidy::getStatus example
- Example#4646 - tidy::head example
- Example#4647 - tidy::html example
- Example#4648 - tidy::parseFile example
- Example#4649 - tidy::parseString example
- Example#4650 - tidy::repairFile example
- Example#4651 - tidy::repairString example
- Example#4652 - tidy::root example
- Example#4653 - tidyNode::hasChildren example
- Example#4654 - tidyNode::hasChildren example
- Example#4655 - tidyNode::hasSiblings example
- Example#4656 - Extract ASP code from a mixed HTML document
- Example#4657 - Extract comments from a mixed HTML document
- Example#4658 - Extract HTML code from a mixed HTML document
- Example#4659 - Extract JSTE code from a mixed HTML document
- Example#4660 - Extract PHP code from a mixed HTML document
- Example#4661 - Extract text from a mixed HTML document
- Example#4662 - ob_tidyhandler example
- Example#4663 - tidy_access_count example
- Example#4664 - tidy_config_count example
- Example#4665 - tidy_error_count example
- Example#4666 - tidy_get_output example
- Example#4667 - tidy_setopt example
- Example#4668 - tidy_warning_count example
- Example#4669 - Strip comments with the tokenizer
- Example#4670 - token_get_all example
- Example#4671 - token_get_all incorrect usage example
- Example#4672 - token_get_all on a class using a reserved word example
- Example#4673 - token_name example
- Example#4674 - base64_decode example
- Example#4675 - base64_encode example
- Example#4676 - get_headers example
- Example#4677 - get_headers using HEAD example
- Example#4678 - What get_meta_tags parses
- Example#4679 - What get_meta_tags returns
- Example#4680 - Simple usage of http_build_query
- Example#4681 - http_build_query with numerically index elements.
- Example#4682 - http_build_query with complex arrays
- Example#4683 - Using http_build_query with an object
- Example#4684 - A parse_url example
- Example#4685 - A parse_url example with missing scheme
- Example#4686 - rawurldecode example
- Example#4687 - including a password in an FTP URL
- Example#4688 - rawurlencode example 2
- Example#4689 - urldecode example
- Example#4690 - urlencode example
- Example#4691 - urlencode and htmlentities example
- Example#4692 - Executarea de bază a unui Javascript
- Example#4693 - Yaml Example
- Example#4694 - Parse callback example
- Example#4695 - Emit callback example
- Example#4696 - yaml_emit example
- Example#4697 - yaml_parse example
- Example#4698 - A classic Application directory layout
- Example#4699 - Entry
- Example#4700 - Rewrite rule
- Example#4701 - Application config
- Example#4702 - Default controller
- Example#4703 - Default view template
- Example#4704 - Run the Applicatioin
- Example#4705 - An PHP array example
- Example#4706 - An ini file example
- Example#4707 - A Bootstrapexample
- Example#4708 - Yaf_Application::bootstrapexample
- Example#4709 - Yaf_Application::clearLastErrorexample
- Example#4710 - A ini config file example
- Example#4711 - Yaf_Application::__constructexample
- Example#4712 - Yaf_Application::__constructexample
- Example#4713 - Yaf_Application::environexample
- Example#4714 - Yaf_Application::executeexample
- Example#4715 - Yaf_Application::getConfigexample
- Example#4716 - Yaf_Application::getDispatcherexample
- Example#4717 - Yaf_Application::getLastErrorMsgexample
- Example#4718 - Yaf_Application::getLastErrorNoexample
- Example#4719 - Yaf_Application::getModulesexample
- Example#4720 - Bootstrap example
- Example#4721 - Yaf_Dispatcher::autoRenderexample
- Example#4722 - Yaf_Dispatcher::catchExceptionexample
- Example#4723 - Yaf_Dispatcher::registerPluginexample
- Example#4724 - A custom View engineexample
- Example#4725 - Yaf_Dispatcher::setViewexample
- Example#4726 - Yaf_Dispatcher::throwexceptionexample
- Example#4727 - Yaf_Dispatcher::throwexceptionexample
- Example#4728 - Yaf_Config_Iniexample
- Example#4729 - define action in a separate file
- Example#4730 - Dummy_action.php
- Example#4731 - Yaf_Controller_Abstract::forwardexample
- Example#4732 - Yaf_Action_Abstract::executeexample
- Example#4733 - Yaf_Action_Abstract::executeexample
- Example#4734 - Yaf_View_Simple::assignexample
- Example#4735 - templateexample
- Example#4736 - Yaf_View_Simple::assignRefexample
- Example#4737 - templateexample
- Example#4738 - Yaf_View_Simple::clearexample
- Example#4739 - Yaf_View_Simple::__constructorexample
- Example#4740 - Yaf_View_Simple::__setexample
- Example#4741 - Config example
- Example#4742 - Register localnamespace
- Example#4743 - Load class example
- Example#4744 - Load namespace class example
- Example#4745 - MVC class loading example
- Example#4746 - MVC class distinctions
- Example#4747 - MVC loading example
- Example#4748 - Yaf_Loader::registerLocalNamespaceexample
- Example#4749 - Plugin example
- Example#4750 - Yaf_Plugin_Abstract::routerShutdownexample
- Example#4751 - Yaf_Response_Abstract::appendBodyexample
- Example#4752 - Yaf_Response_Abstract::getBodyexample
- Example#4753 - Yaf_Response_Abstract::prependBodyexample
- Example#4754 - Yaf_Response_Abstract::responseexample
- Example#4755 - Yaf_Response_Abstract::setBodyexample
- Example#4756 - Yaf_Route_Map::assembleexample
- Example#4757 - Yaf_Route_Mapexample
- Example#4758 - Yaf_Route_Mapexample
- Example#4759 - Yaf_Route_Mapexample
- Example#4760 - Yaf_Route_Regex::assembleexample
- Example#4761 - Yaf_Route_Regexexample
- Example#4762 - Yaf_Route_Regex(as of 2.3.0)example
- Example#4763 - Yaf_Route_Regex and named capture ground(as of 2.3.0)example
- Example#4764 - Yaf_Route_Regexexample
- Example#4765 - Yaf_Route_Rewrite::assembleexample
- Example#4766 - Yaf_Route_Rewriteexample
- Example#4767 - Yaf_Route_Rewriteexample
- Example#4768 - Yaf_Route_Rewrite(as of 2.3.0)example
- Example#4769 - Rewrite rule for Apache
- Example#4770 - Rewrite rule for Apache
- Example#4771 - Rewrite rule for Lighttpd
- Example#4772 - Rewrite rule for Nginx
- Example#4773 - Yaf_Route_Static(default route)example
- Example#4774 - application.iniexample
- Example#4775 - Yaf_Dispatcher::autoConfigexample
- Example#4776 - Yaf_Dispatcher::autoRenderexample
- Example#4777 - Register some routes in Bootstrap
- Example#4778 - plugin Dummy.php (under application.directory/plugins)
- Example#4779 - Yaf_Route_Simple::assembleexample
- Example#4780 - Yaf_Route_Simple::routeexample
- Example#4781 - Yaf_Route_Simple::routeexample
- Example#4782 - Yaf_Route_Static::assembleexample
- Example#4783 - Yaf_Route_Static::routeexample
- Example#4784 - Yaf_Route_Supervar::assembleexample
- Example#4785 - Yaf_Route_Supervarexample
- Example#4786 - Taintexample
- Example#4787 - Creating a chdb file
- Example#4788 - Loading and looking up a chdb file
- Example#4789 - chdb::get example
- Example#4790 - chdb_create example
- Example#4791 - Using PHP's cURL module to fetch the example.com homepage
- Example#4792 - Initializing a new cURL session and fetching a web page
- Example#4793 - Copying a cURL handle
- Example#4794 - curl_errno example
- Example#4795 - curl_error example
- Example#4796 - curl_escape example
- Example#4797 - Fetching a web page
- Example#4798 - curl_getinfo example
- Example#4799 - curl_getinfo example with opt parameter
- Example#4800 - Initializing a new cURL session and fetching a web page
- Example#4801 - curl_multi_add_handle example
- Example#4802 - curl_multi_close example
- Example#4803 - curl_multi_exec example
- Example#4804 - A curl_multi_info_read example
- Example#4805 - curl_multi_init example
- Example#4806 - curl_multi_strerror example
- Example#4807 - curl_reset example
- Example#4808 - Initializing a new cURL session and fetching a web page
- Example#4809 - Our own implementation of curl_setopt_array
- Example#4810 - Initializing a new cURL session and fetching a web page
- Example#4811 - Uploading file (deprecated as of PHP 5.5.0)
- Example#4812 - curl_share_setopt example
- Example#4813 - curl_share_init example
- Example#4814 - curl_share_setopt example
- Example#4815 - curl_errno example
- Example#4816 - curl_escape example
- Example#4817 - curl_version example
- Example#4818 - CURLFile::__construct example
- Example#4819 - Simple HTTP client
- Example#4820 - HTTP client using asynchronous DNS resolver
- Example#4821 - Echo server
- Example#4822 - SSL echo server
- Example#4823 - Signal handler
- Example#4824 - Use libevent's loop to process requests of `eio' extension
- Example#4825 - Miscellaneous
- Example#4826 - Simple HTTP server
- Example#4827 - Simple HTTPS server
- Example#4828 - OpenSSL connection
- Example#4829 - EventHttpConnection::makeRequest example
- Example#4830 - Connection listener based on a UNIX domain socket
- Example#4831 - Simple SMTP server
- Example#4832 - Handling SIGTERM signal
- Example#4833 - Event::addSignal example
- Example#4834 - Event::addTimer example
- Example#4835 - EventBase::getFeatures example
- Example#4836 - EventBase::getMethod example
- Example#4837 - EventBuffer::search example
- Example#4838 - EventBufferEvent::connect example
- Example#4839 - Connect to UNIX domain socket which presumably is served by a server, read response from
the server and output it to the console
- Example#4840 - EventBufferEvent::connectHost example
- Example#4841 - Buffer event's read callback
- Example#4842 - EventBufferEvent::getOutput example
- Example#4843 - EventBufferEvent::sslError example
- Example#4844 - Simple SMTP server
- Example#4845 - EventConfig::avoidMethod example
- Example#4846 - EventConfig::__construct example
- Example#4847 - EventConfig::requireFeatures example
- Example#4848 - EventHttp::accept example
- Example#4849 - EventHttp::addServerAlias example
- Example#4850 - EventHttp::bind example
- Example#4851 - Simple HTTP server
- Example#4852 - EventHttp::setCallback example
- Example#4853 - EventHttp::setDefaultCallback example
- Example#4854 - EventHttpConnection::makeRequest example
- Example#4855 - EventHttpConnection::setCloseCallback example
- Example#4856 - EventHttpRequest::__construct example
- Example#4857 - EventHttpRequest::sendError example
- Example#4858 - EventListener::__construct example
- Example#4859 - EventSslContext::__construct example
- Example#4860 - FTP example
- Example#4861 - ftp_alloc example
- Example#4862 - ftp_cdup example
- Example#4863 - ftp_chdir example
- Example#4864 - ftp_chmod example
- Example#4865 - ftp_close example
- Example#4866 - ftp_connect example
- Example#4867 - ftp_delete example
- Example#4868 - ftp_exec example
- Example#4869 - ftp_fget example
- Example#4870 - ftp_fput example
- Example#4871 - ftp_get_option example
- Example#4872 - ftp_get example
- Example#4873 - ftp_login example
- Example#4874 - ftp_mdtm example
- Example#4875 - ftp_mkdir example
- Example#4876 - ftp_nb_continue example
- Example#4877 - ftp_nb_fget example
- Example#4878 - ftp_nb_fput example
- Example#4879 - ftp_nb_get example
- Example#4880 - Resuming a download with ftp_nb_get
- Example#4881 - Resuming a download at position 100 to a new
file with ftp_nb_get
- Example#4882 - ftp_nb_put example
- Example#4883 - Resuming an upload with ftp_nb_put
- Example#4884 - ftp_nlist example
- Example#4885 - ftp_pasv example
- Example#4886 - ftp_put example
- Example#4887 - ftp_pwd example
- Example#4888 - Using ftp_raw to login to an FTP server manually.
- Example#4889 - ftp_rawlist example
- Example#4890 - ftp_rename example
- Example#4891 - ftp_rmdir example
- Example#4892 - ftp_set_option example
- Example#4893 - Sending a SITE command to an ftp server
- Example#4894 - ftp_size example
- Example#4895 - ftp_ssl_connect example
- Example#4896 - ftp_systype example
- Example#4897 - Basic Gearman client and worker
- Example#4898 - Basic Gearman client and worker, background
- Example#4899 - Basic Gearman client and worker, submitting tasks
- Example#4900 - Adding two job servers
- Example#4901 - Add two job servers
- Example#4902 - Basic submission of two tasks
- Example#4903 - Basic submission of two tasks with passing application context
- Example#4904 - Two tasks, one background and one not
- Example#4905 - A high priority task along with two normal tasks
- Example#4906 - A low priority task along with two normal tasks
- Example#4907 - Monitor completion of multiple background tasks
- Example#4908 - Simple job submission with immediate return
- Example#4909 - Submitting a job and retrieving incremental status
- Example#4910 - Submit and monitor a background job
- Example#4911 - Simple job submission with immediate return
- Example#4912 - Submitting a job and retrieving incremental status
- Example#4913 - Get the status of a long running job
- Example#4914 - Monitor the status of a long running background job
- Example#4915 - Simple worker making use of extra application context data
- Example#4916 - Add alternate Gearman servers
- Example#4917 - Add two job servers
- Example#4918 - GearmanWorker::setId example
- Example#4919 - A simple worker with a 5 second timeout
- Example#4920 - Running worker in non-blocking mode
- Example#4921 - GearmanWorker::work example
- Example#4922 - Hypothetical output from gopher://gopher.example.com/
- Example#4923 - Using gopher_parsedir
- Example#4924 - Search for all UPnP devices and services.
- Example#4925 - Implementing light server
- Example#4926 - Implementing light client
- Example#4927 - Create new UPnP context and get IP address of the host
- Example#4928 - Create new UPnP context and get port number
- Example#4929 - Create new UPnP context and set host path
- Example#4930 - Create new UPnP context
- Example#4931 - Create new UPnP context and set callback
- Example#4932 - Create new UPnP context and start browsing
- Example#4933 - Create new UPnP context and start browsing
- Example#4934 - Create new UPnP context and get device info service
- Example#4935 - Create new UPnP context and get device info service
- Example#4936 - Retrieve an object
- Example#4937 - LDAP search example
- Example#4938 - Complete example with authenticated bind
- Example#4939 - Using LDAP Bind
- Example#4940 - Using LDAP Bind Anonymously
- Example#4941 - Complete example of password check
- Example#4942 - Example of connecting to LDAP server.
- Example#4943 - Example of connecting securely to LDAP server.
- Example#4944 - LDAP pagination
- Example#4945 - LDAP pagination
- Example#4946 - ldap-count-entries example
- Example#4947 - Enumerating all LDAP error messages
- Example#4948 - Generating and catching an error
- Example#4949 - Show the list of attributes held for a particular directory entry
- Example#4950 - Check protocol version
- Example#4951 - List all values of the "mail" attribute for a
directory entry
- Example#4952 - Produce a list of all organizational units of an organization
- Example#4953 - Add a telephone number to a contact
- Example#4954 - Rename a user
- Example#4955 - Add two e-mail addresses to a user
- Example#4956 - Change a user's password
- Example#4957 - Change a user's password (Active Directory)
- Example#4958 - ldap_parse_result example
- Example#4959 - LDAP search
- Example#4960 - Set protocol version
- Example#4961 - Set server controls
- Example#4962 - LDAP sort
- Example#4963 - memcache extension overview example
- Example#4964 - Using memcache session handler
- Example#4965 - Memcache::add example
- Example#4966 - Memcache::addServer example
- Example#4967 - Memcache::close example
- Example#4968 - Memcache::connect example
- Example#4969 - Memcache::decrement example
- Example#4970 - Memcache::delete example
- Example#4971 - Memcache::flush example
- Example#4972 - Memcache::get example
- Example#4973 - Memcache::getExtendedStats example
- Example#4974 - Memcache::getServerStatus example
- Example#4975 - Memcache::getVersion example
- Example#4976 - Memcache::increment example
- Example#4977 - Memcache::pconnect example
- Example#4978 - Memcache::replace example
- Example#4979 - Memcache::set example
- Example#4980 - Memcache::set example
- Example#4981 - Memcache::setCompressThreshold example
- Example#4982 - Memcache::setServerParams example
- Example#4983 - Result callback example
- Example#4984 - Read-through callback example
- Example#4985 - Memcached::addServer example
- Example#4986 - Memcached::addServers example
- Example#4987 - Memcached::append example
- Example#4988 - Memcached::cas example
- Example#4989 - Creating a Memcached object
- Example#4990 - Memcached::decrement example
- Example#4991 - Memcached::delete example
- Example#4992 - Memcached::fetch example
- Example#4993 - Memcached::getDelayed example
- Example#4994 - Memcached::flush example
- Example#4995 - Memcached::get example #1
- Example#4996 - Memcached::get example #2
- Example#4997 - Memcached::getDelayed example
- Example#4998 - Memcached::getMulti example
- Example#4999 - Memcached::GET_PRESERVE_ORDER example
- Example#5000 - Retrieving Memcached options
- Example#5001 - Memcached::getResultCode example
- Example#5002 - Memcached::getResultMessage example
- Example#5003 - Memcached::getServerByKey example
- Example#5004 - Memcached::getServerList example
- Example#5005 - Memcached::getStats example
- Example#5006 - Memcached::getVersion example
- Example#5007 - Memcached::increment example
- Example#5008 - Memcached::prepend example
- Example#5009 - Memcached::set example
- Example#5010 - Memcached::setByKey example
- Example#5011 - Memcached::setMulti example
- Example#5012 - Setting a Memcached option
- Example#5013 - Setting Memcached options
- Example#5014 - mqseries_back
example
- Example#5015 - mqseries_begin
example
- Example#5016 - mqseries_close
example
- Example#5017 - mqseries_cmit
example
- Example#5018 - mqseries_conn
example
- Example#5019 - mqseries_connx
example
- Example#5020 - mqseries_connx
example using SSL connection & OCSP Responder URL
- Example#5021 - mqseries_disc
example
- Example#5022 - mqseries_get
example
- Example#5023 - mqseries_inq
example
- Example#5024 - mqseries_open
example
- Example#5025 - mqseries_put
example
- Example#5026 - mqseries_strerror
example
- Example#5027 - define_syslog_variables example
- Example#5028 - Using dns_get_record
- Example#5029 - Using dns_get_record and DNS_ANY
- Example#5030 - fsockopen Example
- Example#5031 - Using UDP connection
- Example#5032 - A simple gethostbyaddr example
- Example#5033 - A simple gethostbyname example
- Example#5034 - gethostbynamel example
- Example#5035 - A simple gethostname example
- Example#5036 - getprotobyname example
- Example#5037 - getservbyname example
- Example#5038 - header_register_callback example
- Example#5039 - Unsetting specific header.
- Example#5040 - Unsetting all previously set headers.
- Example#5041 - Download dialog
- Example#5042 - Caching directives
- Example#5043 - Examples using headers_list
- Example#5044 - Examples using headers_sent
- Example#5045 - Using http_response_code in a web server environment
- Example#5046 - Using http_response_code in a CLI environment
- Example#5047 - inet_ntop Example
- Example#5048 - inet_pton Example
- Example#5049 - ip2long Example
- Example#5050 - Displaying an IP address
- Example#5051 - setcookie send example
- Example#5052 - setcookie delete example
- Example#5053 - setcookie and arrays
- Example#5054 - Using syslog
- Example#5055 - Procedural usage of rrd
- Example#5056 - OO usage of rrd
- Example#5057 - RRDGraph::setOptions example
- Example#5058 - Set multiple color options
- Example#5059 - RRDUpdater::update examples
- Example#5060 - Creating a connection and connecting to a remote WebSphere MQSeries Messaging Server
- Example#5061 - Creating a connection and connecting to a remote WebSphere Application Server
- Example#5062 - Creating a connection and connecting to an MQTT server
- Example#5063 - Creating a message with a simple text body
- Example#5064 - Setting a text format property using the default syntax
- Example#5065 - Setting a property using a type hint
- Example#5066 - Retrieving a property from a message header
- Example#5067 - Adding a message to a queue and receiving a response
- Example#5068 - Creating a durable subscription to a topic
- Example#5069 - Subscribing to a topic using a WebSphere Platform Messaging (WPM) server
- Example#5070 - Receiving published data using a durable subscription
- Example#5071 - Deleting a durable subscription to a topic
- Example#5072 - Handling an error from a method that returns no result
- Example#5073 - Handling an error from a method that returns a result
- Example#5074 - Committing the current unit of work
- Example#5075 - Creating a connection to a Messaging Server using the IBM MQSeries
protocol (WMQ)
- Example#5076 - Creating a connection with application transaction control and default
host and port values
- Example#5077 - Creating a connection to a Messaging Server using the IBM WebSphere
Platform Messaging protocol (WPM)
- Example#5078 - Creating a connection object and connecting to a Messaging Server
- Example#5079 - Disconnecting from a Messaging Server
- Example#5080 - Using the error number and description properties
- Example#5081 - Using the error number and description properties
- Example#5082 - Checking whether there us a connection to a Messaging Server
- Example#5083 - Retrieve the next message from a queue without removing it
- Example#5084 - Retrieve a specific message from a queue without removing it from the queue
- Example#5085 - Retrieve all messages in a queue without removing them
- Example#5086 - Retrieve all messages from a queue with a matching correlation id
- Example#5087 - Receiving a message from a queue
- Example#5088 - Receiving a message from a queue with options
- Example#5089 - Receiving a message from a subscription
- Example#5090 - Removing a message from a queue by message id
- Example#5091 - Cancelling an in-flight unit of work
- Example#5092 - Send a message to a queue
- Example#5093 - Publish a message to a topic
- Example#5094 - Send a request and receive a response
- Example#5095 - Turn on debugging output
- Example#5096 - Turn off debugging output
- Example#5097 - Subscribe to a topic
- Example#5098 - Delete a subscription
- Example#5099 - Setting a text string into the body of a message
- Example#5100 - Creating a message
- Example#5101 - Creating a message with a simple text payload
- Example#5102 - Setting a text format property using the default syntax
- Example#5103 - Setting a text format property using a type hint
- Example#5104 - Setting properties as the sender of a message
- Example#5105 - Retreiving property values from a message
- Example#5106 - snmp_get_quick_print example
- Example#5107 - Using snmp_get_valueretrieval
- Example#5108 - Using snmp_read_mib
- Example#5109 - Using snmp_set_enum_print
- Example#5110 - Using snmprealwalk
- Example#5111 - Using snmp_set_quick_print
- Example#5112 - Using
snmp_set_valueretrieval
- Example#5113 - Using snmp2_get
- Example#5114 - Using snmp2_get_next
- Example#5115 - Using snmp2_real_walk
- Example#5116 - Using snmp2_set
- Example#5117 - Using snmp2_set for setting BITS SNMP object id
- Example#5118 - snm2_pwalk Example
- Example#5119 - Using snmp3_get
- Example#5120 - Using snmp3_getnext
- Example#5121 - Using
snmp3_real_walk
- Example#5122 - Using snmp3_set
- Example#5123 - Using snmp3_set for setting BITS SNMP object id
- Example#5124 - snmp3_walk Example
- Example#5125 - Using snmpget
- Example#5126 - Using snmpgetnext
- Example#5127 - Using snmprealwalk
- Example#5128 - Using snmpset
- Example#5129 - Using snmpset for setting BITS SNMP object id
- Example#5130 - snmpwalk Example
- Example#5131 - snmpwalkoid Example
- Example#5132 - SNMP::close example
- Example#5133 - Fetching sysLocation
- Example#5134 - Single SNMP object
- Example#5135 - Multiple SNMP objects
- Example#5136 - SNMP::getErrno example
- Example#5137 - SNMP::getError example
- Example#5138 - Single SNMP object
- Example#5139 - Miltiple SNMP objects
- Example#5140 - Set single SNMP object id
- Example#5141 - Set multiple values using single SNMP::set
call
- Example#5142 - Using SNMP::set for setting BITS SNMP object id
- Example#5143 - SNMP::setSecurity example
- Example#5144 - SNMP::walk example
- Example#5145 - suffix_as_key example
- Example#5146 - Socket example: Simple TCP/IP server
- Example#5147 - Socket example: Simple TCP/IP client
- Example#5148 - Using socket_bind to set the source address
- Example#5149 - socket_create_pair example
- Example#5150 - socket_create_pair IPC example
- Example#5151 - socket_get_option example
- Example#5152 - socket_import_stream example
- Example#5153 - socket_last_error example
- Example#5154 - socket_recv example
- Example#5155 - socket_recvfrom example
- Example#5156 - Using NULL with socket_select
- Example#5157 - Understanding socket_select's result
- Example#5158 - socket_select example
- Example#5159 - socket_sendto Example
- Example#5160 - socket_set_block example
- Example#5161 - socket_set_nonblock example
- Example#5162 - socket_set_option example
- Example#5163 - socket_strerror example
- Example#5164 - Authenticating with a ssh agent
- Example#5165 - Authentication using a public hostkey
- Example#5166 - Retrieving a list of authentication methods
- Example#5167 - Authenticating with a password
- Example#5168 - Authentication using a public key
- Example#5169 - ssh2_connect example
- Example#5170 - Executing a command
- Example#5171 - Opening a shell and retrieving the stderr stream associated with it
- Example#5172 - Checking the fingerprint against a known value
- Example#5173 - Determining what methods were negotiated
- Example#5174 - Adding a publickey with ssh2_publickey_add
- Example#5175 - Listing authorized keys with ssh2_publickey_list
- Example#5176 - Downloading a file via SCP
- Example#5177 - Uploading a file via SCP
- Example#5178 - Changing the mode of a file on a remote server
- Example#5179 - Stating a symbolic link via SFTP
- Example#5180 - Creating a directory on a remote server
- Example#5181 - Reading a symbolic link
- Example#5182 - Resolving a pathname
- Example#5183 - Renaming a file via sftp
- Example#5184 - Removing a directory on a remote server
- Example#5185 - Stating a file via SFTP
- Example#5186 - Creating a symbolic link
- Example#5187 - Deleting a file
- Example#5188 - Opening a file via SFTP
- Example#5189 - Requesting an interactive shell
- Example#5190 - Opening a tunnel to an arbitrary host
- Example#5191 - Stil obiect-orientat
- Example#5192 - Stil procedural
- Example#5193 - stomp_connect_error example
- Example#5194 - stomp_version example
- Example#5195 - Stil obiect-orientat
- Example#5196 - Stil procedural
- Example#5197 - Stil obiect-orientat
- Example#5198 - Stil procedural
- Example#5199 - Stil obiect-orientat
- Example#5200 - Stil procedural
- Example#5201 - Stil obiect-orientat
- Example#5202 - Stil procedural
- Example#5203 - Stil obiect-orientat
- Example#5204 - Stil procedural
- Example#5205 - Stil obiect-orientat
- Example#5206 - Stil procedural
- Example#5207 - Stil obiect-orientat
- Example#5208 - Stil procedural
- Example#5209 - Stil obiect-orientat
- Example#5210 - Stil procedural
- Example#5211 - Stil obiect-orientat
- Example#5212 - Stil procedural
- Example#5213 - Train from array
- Example#5214 - Train from a file
- Example#5215 - svn_add example
- Example#5216 - Default authentication example
- Example#5217 - svn_blame example
- Example#5218 - Basic example
- Example#5219 - Basic example
- Example#5220 - Basic example
- Example#5221 - Basic example
- Example#5222 - Basic example
- Example#5223 - Basic example
- Example#5224 - Diffing two revisions of a repository path
- Example#5225 - Portably diffing two local files
- Example#5226 - svn_export example
- Example#5227 - Basic example
- Example#5228 - svn_log example
- Example#5229 - svn_ls example
- Example#5230 - Basic example
- Example#5231 - Basic example
- Example#5232 - Deny all connections from localhost
- Example#5233 - Ban an URL
- Example#5234 - Get statistic snapshot
- Example#5235 - Read varnish shared memory log
- Example#5236 - VarnishAdmin::__construct example
- Example#5237 - Parallel searching using Yaz
- Example#5238 - CCL configuration
- Example#5239 - CCL Parsing
- Example#5240 - Record Update
- Example#5241 - Array for GRS-1 record
- Example#5242 - Working with MARCXML
- Example#5243 - PHP function that scans titles
- Example#5244 - Query Examples
- Example#5245 - Sort Criterias
- Example#5246 - Example for NIS errors
- Example#5247 - Example for the NIS first
- Example#5248 - Example for the default domain
- Example#5249 - Example for the NIS master
- Example#5250 - Example for NIS match
- Example#5251 - Example for NIS next
- Example#5252 - Example for the NIS order
- Example#5253 - A ZMQContext example
- Example#5254 - A ZMQContext example
- Example#5255 - A ZMQContext example
- Example#5256 - A ZMQSocket example
- Example#5257 - A send/recv example
- Example#5258 - A ZMQPoll example
- Example#5259 - Zookeeper::addAuth example
- Example#5260 - Zookeeper::create example
- Example#5261 - Zookeeper::delete example
- Example#5262 - Zookeeper::exists example
- Example#5263 - Zookeeper::get example
- Example#5264 - Zookeeper::getAcl example
- Example#5265 - Zookeeper::set example
- Example#5266 - Zookeeper::setAcl example
- Example#5267 - Zookeeper::setDebugLevel example
- Example#5268 -
- Example#5269 - udm_api_version example
- Example#5270 - udm_cat_listexample
- Example#5271 - Specifying path to the current category in the following format:
'> Root > Sport > Auto > Ferrari'
- Example#5272 - udm_load_ispell_data example
- Example#5273 - udm_load_ispell_data example
- Example#5274 - solr_get_version example
- Example#5275 - Contents of the BootStrap file
- Example#5276 - Adding a document to the index
- Example#5277 - Merging one document into another document
- Example#5278 - Searching for documents - SolrObject responses
- Example#5279 - Searching for documents - SolrDocument responses
- Example#5280 - Simple TermsComponent example - basic
- Example#5281 - Simple TermsComponent example - using a prefix
- Example#5282 - Simple TermsComponent example - specifying a minimum frequency
- Example#5283 - Simple Facet Example
- Example#5284 - Simple Facet Example - with optional field override for mincount
- Example#5285 - Facet Date Example
- Example#5286 - Connecting to SSL-Enabled Server
- Example#5287 - Collapsing a SolrQuery
- Example#5288 - Solr Real Time Get (RTG) example SolrClient::getById
- Example#5289 - SolrInputDocument::addChildDocument example
- Example#5290 - SolrInputDocument::addChildDocuments example
- Example#5291 - SolrDocument::toArray example
- Example#5292 - SolrObject::__construct example
- Example#5293 - SolrObject::offsetUnset example
- Example#5294 - SolrClient::addDocument example
- Example#5295 - SolrClient::addDocument example 2
- Example#5296 - SolrClient::addDocuments example
- Example#5297 - SolrClient::__construct example
- Example#5298 - SolrQuery::deleteByQuery example
- Example#5299 - SolrClient::getById example
- Example#5300 - SolrClient::getByIds example
- Example#5301 - SolrClient::ping example
- Example#5302 - SolrClient::query example
- Example#5303 - SolrClient::request example
- Example#5304 - SolrClient::setResponseWriter example
- Example#5305 - SolrParams::setParam example
- Example#5306 - SolrQuery::addFacetField example
- Example#5307 - SolrQuery::addFacetField example
- Example#5308 - SolrQuery::addFilterQuery example
- Example#5309 - SolrQuery::addGroupSortField example
- Example#5310 - SolrQuery::collapse example
- Example#5311 - SolrQuery::setExpand example
- Example#5312 - SolrDisMaxQuery::addBigramPhraseField example
- Example#5313 - SolrDisMaxQuery::addBoostQuery example
- Example#5314 - SolrDisMaxQuery::addPhraseField example
- Example#5315 - SolrDisMaxQuery::addQueryField example
- Example#5316 - SolrDisMaxQuery::addTrigramPhraseField example
- Example#5317 - SolrDisMaxQuery::addUserField example
- Example#5318 - SolrDisMaxQuery::__construct example
- Example#5319 - SolrDisMaxQuery::removeBigramPhraseField example
- Example#5320 - SolrDisMaxQuery::removeBoostQuery example
- Example#5321 - SolrDisMaxQuery::removePhraseField example
- Example#5322 - SolrDisMaxQuery::removeQueryField example
- Example#5323 - SolrDisMaxQuery::removeTrigramPhraseField example
- Example#5324 - SolrDisMaxQuery::removeUserField example
- Example#5325 - SolrDisMaxQuery::setBigramPhraseFields example
- Example#5326 - SolrDisMaxQuery::setBigramPhraseSlop example
- Example#5327 - SolrDisMaxQuery::setBoostFunction example
- Example#5328 - SolrDisMaxQuery::setBoostQuery example
- Example#5329 - SolrDisMaxQuery::setMinimumMatch example
- Example#5330 - SolrDisMaxQuery::setPhraseFields example
- Example#5331 - SolrDisMaxQuery::setPhraseSlop example
- Example#5332 - SolrDisMaxQuery::setQueryAlt example
- Example#5333 - SolrDisMaxQuery::setQueryPhraseSlop example
- Example#5334 - SolrDisMaxQuery::setTieBreaker example
- Example#5335 - SolrDisMaxQuery::setTrigramPhraseFields example
- Example#5336 - SolrDisMaxQuery::setTrigramPhraseSlop example
- Example#5337 - SolrDisMaxQuery::setUserFields example
- Example#5338 - SolrDisMaxQuery::useDisMaxQueryParser example
- Example#5339 - SolrDisMaxQuery::useEDisMaxQueryParser example
- Example#5340 - SolrCollapseFunction::__construct example
- Example#5341 - SolrCollapseFunction::setHint example
- Example#5342 - SolrCollapseFunction::setMax example
- Example#5343 - Basic usage example
- Example#5344 - Basic search query
- Example#5345 - A Swish::__construct example
- Example#5346 - Basic Swish::getMetaList example
- Example#5347 - Basic Swish::getPropertyList example
- Example#5348 - Basic Swish::prepare example
- Example#5349 - Basic Swish::query example
- Example#5350 - Basic SwishResult::stem example
- Example#5351 - Basic SwishResults::getParsedWords example
- Example#5352 - Basic SwishResults::nextResult example
- Example#5353 - Basic SwishResults::seekResult example
- Example#5354 - Basic SwishSearch::execute example
- Example#5355 - Basic SwishSearch::resetLimit example
- Example#5356 - Basic SwishSearch::setLimit example
- Example#5357 - Basic SwishSearch::setPhraseDelimiter example
- Example#5358 - Basic SwishSearch::setSort example
- Example#5359 - Basic SwishSearch::setStructure example
- Example#5360 - Deconectarea prelucrării PHP pentru un director utilizând .htaccess
- Example#5361 - apache_get_modules example
- Example#5362 - apache_get_version example
- Example#5363 - apache_getenv example
- Example#5364 - Exemplu apache_lookup_uri
- Example#5365 - Transmiterea informației între PHP și Perl
- Example#5366 - Logarea valorilor în access.log
- Example#5367 - apache_request_headers example
- Example#5368 - apache_response_headers example
- Example#5369 - Stabilirea unei variabile de mediu Apache cu ajutorul
apache_setenv
- Example#5370 - Exemplu getallheaders
- Example#5371 - nsapi_request_headers example
- Example#5372 - Registering a variable with $_SESSION.
- Example#5373 - Unregistering a variable with $_SESSION.
- Example#5374 - Counting the number of hits of a single user
- Example#5375 - Example information
- Example#5376 - session_cache_expire example
- Example#5377 - session_cache_limiter example
- Example#5378 - session_create_id example with session_regenerate_id
- Example#5379 - Destroying a session with $_SESSION
- Example#5380 - session_gc example for task managers like cron
- Example#5381 - session_gc example for user accessible script
- Example#5382 - session_name example
- Example#5383 - A session_regenerate_id example
- Example#5384 - Avoiding lost session by session_regenerate_id
- Example#5385 - Custom session handler: see full code in SessionHandlerInterface synposis.
- Example#5386 - Custom session save handler using objects
- Example#5387 - page1.php
- Example#5388 - page2.php
- Example#5389 - Overriding the cookie lifetime
- Example#5390 - Reading the session and closing it
- Example#5391 - Using SessionHandler to add encryption to internal PHP save handlers.
- Example#5392 - Example using SessionHandlerInterface
- Example#5393 - bbcode_add_smiley usage example
- Example#5394 - bbcode_create example
- Example#5395 - bbcode_set_arg_parser usage example
- Example#5396 - bbcode_set_flags usage example
- Example#5397 - Examples of valid patterns
- Example#5398 - Examples of invalid patterns
- Example#5399 - Example comparing preg_filter
with preg_replace
- Example#5400 - preg_grep example
- Example#5401 - preg_last_error example
- Example#5402 - Getting all phone numbers out of some text.
- Example#5403 - Find matching HTML tags (greedy)
- Example#5404 - Using named subpattern
- Example#5405 - Find the string of text "php"
- Example#5406 - Find the word "web"
- Example#5407 - Getting the domain name out of a URL
- Example#5408 - Using named subpattern
- Example#5409 - preg_quote example
- Example#5410 - Italicizing a word within some text
- Example#5411 - preg_replace_callback_array example
- Example#5412 - preg_replace_callback and
anonymous function
- Example#5413 - preg_replace_callback example
- Example#5414 - preg_replace_callback using recursive structure
to handle encapsulated BB code
- Example#5415 - Using backreferences followed by numeric literals
- Example#5416 - Using indexed arrays with preg_replace
- Example#5417 - Replacing several values
- Example#5418 - Strip whitespace
- Example#5419 - Using the count parameter
- Example#5420 - preg_split example : Get the parts of a search string
- Example#5421 - Splitting a string into component characters
- Example#5422 - Splitting a string into matches and their offsets
- Example#5423 - Regular Expression Examples
- Example#5424 - ereg_replace example
- Example#5425 - ereg_replace example
- Example#5426 - Replace URLs with links
- Example#5427 - ereg example
- Example#5428 - Highlight search results
- Example#5429 - eregi example
- Example#5430 - split example
- Example#5431 - split example
- Example#5432 - spliti example
- Example#5433 - sql_regcase example
- Example#5434 - addcslashes example
- Example#5435 - An addslashes example
- Example#5436 - chr example
- Example#5437 - Overflow behavior
- Example#5438 - chunk_split example
- Example#5439 - convert_uudecode example
- Example#5440 - convert_uuencode example
- Example#5441 - count_chars example
- Example#5442 - Displaying a crc32 checksum
- Example#5443 - crypt examples
- Example#5444 - Using crypt with htpasswd
- Example#5445 - Using crypt with different hash types
- Example#5446 - echo examples
- Example#5447 - explode examples
- Example#5448 - explode return examples
- Example#5449 - limit parameter examples
- Example#5450 - fprintf: zero-padded integers
- Example#5451 - fprintf: formatting currency
- Example#5452 - Translation Table Example
- Example#5453 - hex2bin example
- Example#5454 - Decoding HTML entities
- Example#5455 - A htmlentities example
- Example#5456 - Usage of ENT_IGNORE
- Example#5457 - A htmlspecialchars_decode example
- Example#5458 - htmlspecialchars example
- Example#5459 - implode example
- Example#5460 - lcfirst example
- Example#5461 - levenshtein example
- Example#5462 - localeconv example
- Example#5463 - Usage example of ltrim
- Example#5464 - Usage example of md5_file
- Example#5465 - A md5 example
- Example#5466 - metaphone basic example
- Example#5467 - Using the phonemes parameter
- Example#5468 - money_format Example
- Example#5469 - Using nl2br
- Example#5470 - Generating valid HTML markup using the is_xhtml parameter
- Example#5471 - Various newline separators
- Example#5472 - number_format Example
- Example#5473 - ord example
- Example#5474 - Using parse_str
- Example#5475 - parse_str name mangling
- Example#5476 - print examples
- Example#5477 - Usage example of rtrim
- Example#5478 - setlocale Examples
- Example#5479 - setlocale Examples for Windows
- Example#5480 - sha1_file example
- Example#5481 - A sha1 example
- Example#5482 - Soundex Examples
- Example#5483 - Argument swapping
- Example#5484 - Argument swapping
- Example#5485 - Argument swapping
- Example#5486 - Argument swapping
- Example#5487 - Specifying padding character
- Example#5488 - Position specifier with other specifiers
- Example#5489 - printf: various examples
- Example#5490 - printf: string specifiers
- Example#5491 - sprintf: zero-padded integers
- Example#5492 - sprintf: formatting currency
- Example#5493 - sprintf: scientific notation
- Example#5494 - sscanf Example
- Example#5495 - sscanf - using optional parameters
- Example#5496 - str_ireplace example
- Example#5497 - str_pad example
- Example#5498 - str_repeat example
- Example#5499 - Basic str_replace examples
- Example#5500 - Examples of potential str_replace gotchas
- Example#5501 - str_rot13 example
- Example#5502 - str_shuffle example
- Example#5503 - Example uses of str_split
- Example#5504 - A str_word_count example
- Example#5505 - strcasecmp example
- Example#5506 - strcmp example
- Example#5507 - strcspn example
- Example#5508 - strip_tags example
- Example#5509 - stripos examples
- Example#5510 - A stripslashes example
- Example#5511 - Using stripslashes on an array
- Example#5512 - stristr example
- Example#5513 - Testing if a string is found or not
- Example#5514 - Using a non "string" needle
- Example#5515 - A strlen example
- Example#5516 - strpbrk example
- Example#5517 - Using ===
- Example#5518 - Using !==
- Example#5519 - Using an offset
- Example#5520 - strrchr example
- Example#5521 - Reversing a string with strrev
- Example#5522 - A simple strripos example
- Example#5523 - Checking if a needle is in the haystack
- Example#5524 - Searching with offsets
- Example#5525 - strspn example
- Example#5526 - strstr example
- Example#5527 - strtok example
- Example#5528 - strtok behavior on empty part found
- Example#5529 - strtolower example
- Example#5530 - strtoupper example
- Example#5531 - strtr example
- Example#5532 - strtr example with two arguments
- Example#5533 - strtr behavior comparison
- Example#5534 - A substr_compare example
- Example#5535 - A substr_count example
- Example#5536 - Simple substr_replace examples
- Example#5537 - Using substr_replace to replace multiple strings at
once
- Example#5538 - Using a negative start
- Example#5539 - Using a negative length
- Example#5540 - Basic substr usage
- Example#5541 - substr casting behaviour
- Example#5542 -
- Example#5543 - Usage example of trim
- Example#5544 - Trimming array values with trim
- Example#5545 - ucfirst example
- Example#5546 - ucwords example
- Example#5547 - ucwords example with custom delimiter
- Example#5548 - vfprintf: zero-padded integers
- Example#5549 - vprintf: zero-padded integers
- Example#5550 - vsprintf: zero-padded integers
- Example#5551 - wordwrap example
- Example#5552 - wordwrap example
- Example#5553 - wordwrap example
- Example#5554 - Exemplu array_change_key_case
- Example#5555 - Exemplu array_chunk
- Example#5556 - Get the column of first names from a recordset
- Example#5557 - Get the column of last names from a recordset, indexed by the "id" column
- Example#5558 - Get the column of usernames from the public "username" property of an
object
- Example#5559 - Get the column of names from the private "name" property of an object
using the magic __get method.
- Example#5560 - A simple array_combine example
- Example#5561 - Exemplu array_count_values
- Example#5562 - array_diff_assoc example
- Example#5563 - array_diff_assoc example
- Example#5564 - array_diff_key example
- Example#5565 - array_diff_uassoc example
- Example#5566 - array_diff_ukey example
- Example#5567 - Exemplu array_diff
- Example#5568 - array_fill_keys example
- Example#5569 - Exemplu array_fill
- Example#5570 - Exemplu array_filter
- Example#5571 - array_filter fără
callback
- Example#5572 - array_filter cu
flag
- Example#5573 - array_flip example
- Example#5574 - array_flip example : collision
- Example#5575 - array_intersect_assoc example
- Example#5576 - array_intersect_key example
- Example#5577 - array_intersect_uassoc example
- Example#5578 - array_intersect_ukey example
- Example#5579 - array_intersect example
- Example#5580 - array_key_exists example
- Example#5581 - array_key_exists vs isset
- Example#5582 - array_keys example
- Example#5583 - array_map example
- Example#5584 - array_map using a lambda function (as of PHP 5.3.0)
- Example#5585 - array_map - using more arrays
- Example#5586 - Creating an array of arrays
- Example#5587 - array_map - with string keys
- Example#5588 - array_merge_recursive example
- Example#5589 - array_merge example
- Example#5590 - Simple array_merge example
- Example#5591 - array_merge with non-array types
- Example#5592 - Sorting multiple arrays
- Example#5593 - Sorting multi-dimensional array
- Example#5594 - Sorting database results
- Example#5595 - Case insensitive sorting
- Example#5596 - array_pad example
- Example#5597 - array_pop example
- Example#5598 - array_product examples
- Example#5599 - array_push example
- Example#5600 - array_rand example
- Example#5601 - array_reduce example
- Example#5602 - array_replace_recursive example
- Example#5603 - array_replace_recursive and recursive behavior
- Example#5604 - array_replace example
- Example#5605 - array_reverse example
- Example#5606 - array_search example
- Example#5607 - array_shift example
- Example#5608 - array_slice examples
- Example#5609 - array_splice examples
- Example#5610 - array_splice examples
- Example#5611 - array_sum examples
- Example#5612 - array_udiff_assoc example
- Example#5613 - array_udiff_uassoc example
- Example#5614 - array_udiff example using stdClass Objects
- Example#5615 - array_udiff example using DateTime Objects
- Example#5616 - array_uintersect_assoc example
- Example#5617 - array_uintersect_uassoc example
- Example#5618 - array_uintersect example
- Example#5619 - array_unique example
- Example#5620 - array_unique and types
- Example#5621 - array_unshift example
- Example#5622 - array_values example
- Example#5623 - array_walk_recursive example
- Example#5624 - array_walk example
- Example#5625 - Exemplu array
- Example#5626 - Indexarea automată cu array
- Example#5627 - Indicele începând cu 1 cu ajutorul array
- Example#5628 - Accesarea unui tablou între ghilimele duble
- Example#5629 - arsort example
- Example#5630 - asort example
- Example#5631 - compact example
- Example#5632 - count example
- Example#5633 - Recursive count example
- Example#5634 - Example use of current and friends
- Example#5635 - each examples
- Example#5636 - Traversing an array with each
- Example#5637 - end example
- Example#5638 - extract example
- Example#5639 - in_array example
- Example#5640 - in_array with strict example
- Example#5641 - in_array with an array as needle
- Example#5642 - key example
- Example#5643 - krsort example
- Example#5644 - ksort example
- Example#5645 - list examples
- Example#5646 - An example use of list
- Example#5647 - Using nested list
- Example#5648 - Using list with array indices
- Example#5649 - list and order of index definitions
- Example#5650 - natcasesort example
- Example#5651 - natsort examples demonstrating basic usage
- Example#5652 - natsort examples demonstrating potential gotchas
- Example#5653 - Example use of next and friends
- Example#5654 - Example use of prev and friends
- Example#5655 - range examples
- Example#5656 - reset example
- Example#5657 - rsort example
- Example#5658 - shuffle example
- Example#5659 - sort example
- Example#5660 - sort example using case-insensitive natural
ordering
- Example#5661 - Basic uasort example
- Example#5662 - uksort example
- Example#5663 - usort example
- Example#5664 - usort example using multi-dimensional array
- Example#5665 - usort example using a member function of an object
- Example#5666 - usort example using a closure
to sort a multi-dimensional array
- Example#5667 - classes.inc
- Example#5668 - test_script.php
- Example#5669 - call_user_method_array alternative
- Example#5670 - call_user_method alternative
- Example#5671 - class_alias example
- Example#5672 - class_exists example
- Example#5673 - autoload parameter example
- Example#5674 - Using get_called_class
- Example#5675 - get_class_methods example
- Example#5676 - get_class_vars example
- Example#5677 - get_class_vars and scoping behaviour
- Example#5678 - Using get_class
- Example#5679 - Using get_class in superclass
- Example#5680 - get_declared_classes example
- Example#5681 - get_declared_interfaces example
- Example#5682 - Use of get_object_vars
- Example#5683 - Using get_parent_class
- Example#5684 - interface_exists example
- Example#5685 - is_a example
- Example#5686 - Using the instanceof operator in PHP 5
- Example#5687 - is_subclass_of example
- Example#5688 - is_subclass_of using interface example
- Example#5689 - method_exists example
- Example#5690 - Static method_exists example
- Example#5691 - A property_exists example
- Example#5692 - classkit_import example
- Example#5693 - classkit_method_add example
- Example#5694 - classkit_method_copy example
- Example#5695 - classkit_method_redefine example
- Example#5696 - classkit_method_remove example
- Example#5697 - classkit_method_rename example
- Example#5698 - A ctype_alnum example (using the default locale)
- Example#5699 - A ctype_alpha example (using the default locale)
- Example#5700 - A ctype_cntrl example
- Example#5701 - A ctype_digit example
- Example#5702 - A ctype_digit example comparing strings with integers
- Example#5703 - A ctype_graph example
- Example#5704 - A ctype_lower example (using the default locale)
- Example#5705 - A ctype_print example
- Example#5706 - A ctype_punct example
- Example#5707 - A ctype_space example
- Example#5708 - A ctype_upper example (using the default locale)
- Example#5709 - A ctype_xdigit example
- Example#5710 - Vector
- Example#5711 - Map
- Example#5712 - Ds\Collection::clear example
- Example#5713 - Ds\Collection::copy example
- Example#5714 - Ds\Collection::isEmpty example
- Example#5715 - Ds\Collection::toArray example
- Example#5716 - Ds\Hashable::hash example
- Example#5717 - Ds\Sequence::allocate example
- Example#5718 - Ds\Sequence::apply example
- Example#5719 - Ds\Sequence::capacity example
- Example#5720 - Ds\Sequence::contains example
- Example#5721 - Ds\Sequence::filter example using callback function
- Example#5722 - Ds\Sequence::filter example without a callback function
- Example#5723 - Ds\Sequence::find example
- Example#5724 - Ds\Sequence::first example
- Example#5725 - Ds\Sequence::get example
- Example#5726 - Ds\Sequence::get example using array syntax
- Example#5727 - Ds\Sequence::insert example
- Example#5728 - Ds\Sequence::join example using a separator string
- Example#5729 - Ds\Sequence::join example without a separator string
- Example#5730 - Ds\Sequence::last example
- Example#5731 - Ds\Sequence::map example
- Example#5732 - Ds\Sequence::merge example
- Example#5733 - Ds\Sequence::pop example
- Example#5734 - Ds\Sequence::push example
- Example#5735 - Ds\Sequence::reduce with initial value example
- Example#5736 - Ds\Sequence::reduce without an initial value example
- Example#5737 - Ds\Sequence::remove example
- Example#5738 - Ds\Sequence::reverse example
- Example#5739 - Ds\Sequence::reversed example
- Example#5740 - Ds\Sequence::rotate example
- Example#5741 - Ds\Sequence::set example
- Example#5742 - Ds\Sequence::set example using array syntax
- Example#5743 - Ds\Sequence::shift example
- Example#5744 - Ds\Sequence::slice example
- Example#5745 - Ds\Sequence::sort example
- Example#5746 - Ds\Sequence::sort example using a comparator
- Example#5747 - Ds\Sequence::sorted example
- Example#5748 - Ds\Sequence::sorted example using a comparator
- Example#5749 - Ds\Sequence::sum integer example
- Example#5750 - Ds\Sequence::sum float example
- Example#5751 - Ds\Sequence::unshift example
- Example#5752 - Ds\Vector::allocate example
- Example#5753 - Ds\Vector::apply example
- Example#5754 - Ds\Vector::capacity example
- Example#5755 - Ds\Vector::clear example
- Example#5756 - Ds\Vector::__construct example
- Example#5757 - Ds\Vector::contains example
- Example#5758 - Ds\Vector::copy example
- Example#5759 - Ds\Vector::filter example using callback function
- Example#5760 - Ds\Vector::filter example without a callback function
- Example#5761 - Ds\Vector::find example
- Example#5762 - Ds\Vector::first example
- Example#5763 - Ds\Vector::get example
- Example#5764 - Ds\Vector::get example using array syntax
- Example#5765 - Ds\Vector::insert example
- Example#5766 - Ds\Vector::isEmpty example
- Example#5767 - Ds\Vector::join example using a separator string
- Example#5768 - Ds\Vector::join example without a separator string
- Example#5769 - Ds\Vector::last example
- Example#5770 - Ds\Vector::map example
- Example#5771 - Ds\Vector::merge example
- Example#5772 - Ds\Vector::pop example
- Example#5773 - Ds\Vector::push example
- Example#5774 - Ds\Vector::reduce with initial value example
- Example#5775 - Ds\Vector::reduce without an initial value example
- Example#5776 - Ds\Vector::remove example
- Example#5777 - Ds\Vector::reverse example
- Example#5778 - Ds\Vector::reversed example
- Example#5779 - Ds\Vector::rotate example
- Example#5780 - Ds\Vector::set example
- Example#5781 - Ds\Vector::set example using array syntax
- Example#5782 - Ds\Vector::shift example
- Example#5783 - Ds\Vector::slice example
- Example#5784 - Ds\Vector::sort example
- Example#5785 - Ds\Vector::sort example using a comparator
- Example#5786 - Ds\Vector::sorted example
- Example#5787 - Ds\Vector::sorted example using a comparator
- Example#5788 - Ds\Vector::sum integer example
- Example#5789 - Ds\Vector::sum float example
- Example#5790 - Ds\Vector::toArray example
- Example#5791 - Ds\Vector::unshift example
- Example#5792 - Ds\Deque::allocate example
- Example#5793 - Ds\Deque::apply example
- Example#5794 - Ds\Deque::capacity example
- Example#5795 - Ds\Deque::clear example
- Example#5796 - Ds\Deque::__construct example
- Example#5797 - Ds\Deque::contains example
- Example#5798 - Ds\Deque::copy example
- Example#5799 - Ds\Deque::filter example using callback function
- Example#5800 - Ds\Deque::filter example without a callback function
- Example#5801 - Ds\Deque::find example
- Example#5802 - Ds\Deque::first example
- Example#5803 - Ds\Deque::get example
- Example#5804 - Ds\Deque::get example using array syntax
- Example#5805 - Ds\Deque::insert example
- Example#5806 - Ds\Deque::isEmpty example
- Example#5807 - Ds\Deque::join example using a separator string
- Example#5808 - Ds\Deque::join example without a separator string
- Example#5809 - Ds\Deque::last example
- Example#5810 - Ds\Deque::map example
- Example#5811 - Ds\Deque::merge example
- Example#5812 - Ds\Deque::pop example
- Example#5813 - Ds\Deque::push example
- Example#5814 - Ds\Deque::reduce with initial value example
- Example#5815 - Ds\Deque::reduce without an initial value example
- Example#5816 - Ds\Deque::remove example
- Example#5817 - Ds\Deque::reverse example
- Example#5818 - Ds\Deque::reversed example
- Example#5819 - Ds\Deque::rotate example
- Example#5820 - Ds\Deque::set example
- Example#5821 - Ds\Deque::set example using array syntax
- Example#5822 - Ds\Deque::shift example
- Example#5823 - Ds\Deque::slice example
- Example#5824 - Ds\Deque::sort example
- Example#5825 - Ds\Deque::sort example using a comparator
- Example#5826 - Ds\Deque::sorted example
- Example#5827 - Ds\Deque::sorted example using a comparator
- Example#5828 - Ds\Deque::sum integer example
- Example#5829 - Ds\Deque::sum float example
- Example#5830 - Ds\Deque::toArray example
- Example#5831 - Ds\Deque::unshift example
- Example#5832 - Ds\Map::allocate example
- Example#5833 - Ds\Map::apply example
- Example#5834 - Ds\Map::capacity example
- Example#5835 - Ds\Map::clear example
- Example#5836 - Ds\Map::__construct example
- Example#5837 - Ds\Map::copy example
- Example#5838 - Ds\Map::diff example
- Example#5839 - Ds\Map::filter example using callback function
- Example#5840 - Ds\Map::filter example without a callback function
- Example#5841 - Ds\Map::first example
- Example#5842 - Ds\Map::get example
- Example#5843 - Ds\Map::get example using array syntax
- Example#5844 - Ds\Map::hasKey example
- Example#5845 - Ds\Map::hasValue example
- Example#5846 - Ds\Map::intersect example
- Example#5847 - Ds\Map::isEmpty example
- Example#5848 - Ds\Map::keys example
- Example#5849 - Ds\Map::ksort example
- Example#5850 - Ds\Map::ksort example using a comparator
- Example#5851 - Ds\Map::ksorted example
- Example#5852 - Ds\Map::ksorted example using a comparator
- Example#5853 - Ds\Map::last example
- Example#5854 - Ds\Map::map example
- Example#5855 - Ds\Map::merge example
- Example#5856 - Ds\Map::pairs example
- Example#5857 - Ds\Map::put example
- Example#5858 - Ds\Map::put example using objects as keys
- Example#5859 - Ds\Map::putAll example
- Example#5860 - Ds\Map::reduce with initial value example
- Example#5861 - Ds\Map::reduce without an initial value example
- Example#5862 - Ds\Map::remove example
- Example#5863 - Ds\Map::reverse example
- Example#5864 - Ds\Map::reversed example
- Example#5865 - Ds\Map::skip example
- Example#5866 - Ds\Map::slice example
- Example#5867 - Ds\Map::sort example
- Example#5868 - Ds\Map::sort example using a comparator
- Example#5869 - Ds\Map::sort example
- Example#5870 - Ds\Map::sort example using a comparator
- Example#5871 - Ds\Map::sum integer example
- Example#5872 - Ds\Map::sum float example
- Example#5873 - Ds\Map::toArray example
- Example#5874 - Ds\Map::union example
- Example#5875 - Ds\Map::values example
- Example#5876 - Ds\Map::xor example
- Example#5877 - Ds\Pair::clear example
- Example#5878 - Ds\Pair::copy example
- Example#5879 - Ds\Pair::isEmpty example
- Example#5880 - Ds\Pair::toArray example
- Example#5881 - Ds\Set::add example using integers
- Example#5882 - Ds\Set::add example using objects
- Example#5883 - Ds\Set::allocate example
- Example#5884 - Ds\Set::capacity example
- Example#5885 - Ds\Set::clear example
- Example#5886 - Ds\Set::__construct example
- Example#5887 - Ds\Set::contains example
- Example#5888 - Ds\Set::copy example
- Example#5889 - Ds\Set::diff example
- Example#5890 - Ds\Set::filter example using callback function
- Example#5891 - Ds\Set::filter example without a callback function
- Example#5892 - Ds\Set::first example
- Example#5893 - Ds\Set::get example
- Example#5894 - Ds\Set::get example using array syntax
- Example#5895 - Ds\Set::intersect example
- Example#5896 - Ds\Set::isEmpty example
- Example#5897 - Ds\Set::join example using a separator string
- Example#5898 - Ds\Set::join example without a separator string
- Example#5899 - Ds\Set::last example
- Example#5900 - Ds\Set::merge example
- Example#5901 - Ds\Set::reduce with initial value example
- Example#5902 - Ds\Set::reduce without an initial value example
- Example#5903 - Ds\Set::remove example
- Example#5904 - Ds\Set::reverse example
- Example#5905 - Ds\Set::reversed example
- Example#5906 - Ds\Set::slice example
- Example#5907 - Ds\Set::sort example
- Example#5908 - Ds\Set::sort example using a comparator
- Example#5909 - Ds\Set::sorted example
- Example#5910 - Ds\Set::sorted example using a comparator
- Example#5911 - Ds\Set::sum integer example
- Example#5912 - Ds\Set::sum float example
- Example#5913 - Ds\Set::toArray example
- Example#5914 - Ds\Set::union example
- Example#5915 - Ds\Set::xor example
- Example#5916 - Ds\Stack::clear example
- Example#5917 - Ds\Stack::__construct example
- Example#5918 - Ds\Stack::copy example
- Example#5919 - Ds\Stack::isEmpty example
- Example#5920 - Ds\Stack::peek example
- Example#5921 - Ds\Stack::pop example
- Example#5922 - Ds\Stack::push example
- Example#5923 - Ds\Stack::toArray example
- Example#5924 - Ds\Queue::allocate example
- Example#5925 - Ds\Queue::capacity example
- Example#5926 - Ds\Queue::clear example
- Example#5927 - Ds\Queue::__construct example
- Example#5928 - Ds\Queue::copy example
- Example#5929 - Ds\Queue::isEmpty example
- Example#5930 - Ds\Queue::peek example
- Example#5931 - Ds\Queue::pop example
- Example#5932 - Ds\Queue::push example
- Example#5933 - Ds\Queue::toArray example
- Example#5934 - Ds\PriorityQueue::allocate example
- Example#5935 - Ds\PriorityQueue::capacity example
- Example#5936 - Ds\PriorityQueue::clear example
- Example#5937 - Ds\PriorityQueue::__construct example
- Example#5938 - Ds\PriorityQueue::copy example
- Example#5939 - Ds\PriorityQueue::isEmpty example
- Example#5940 - Ds\PriorityQueue::peek example
- Example#5941 - Ds\PriorityQueue::pop example
- Example#5942 - Ds\PriorityQueue::push example
- Example#5943 - Ds\PriorityQueue::toArray example
- Example#5944 - Configuring the default filter to act like htmlspecialchars
- Example#5945 - Configuring the default filter to act like htmlspecialchars
- Example#5946 - Validating email addresses with filter_var
- Example#5947 - Validating IP addresses with filter_var
- Example#5948 - Passing options to filter_var
- Example#5949 - Sanitizing and validating email addresses
- Example#5950 - Configuring a default filter
- Example#5951 - A filter_input_array example
- Example#5952 - A filter_input example
- Example#5953 - A filter_list example
- Example#5954 - A filter_var_array example
- Example#5955 - A filter_var example
- Example#5956 - call_user_func_array example
- Example#5957 - call_user_func_array using namespace name
- Example#5958 - Using lambda function
- Example#5959 - Passing values by reference
- Example#5960 - call_user_func example and references
- Example#5961 - call_user_func example
- Example#5962 - call_user_func using namespace name
- Example#5963 - Using a class method with call_user_func
- Example#5964 - Using lambda function with call_user_func
- Example#5965 - Creating an anonymous function with create_function
- Example#5966 - Making a general processing function with
create_function
- Example#5967 - Using anonymous functions as callback functions
- Example#5968 - forward_static_call_array example
- Example#5969 - forward_static_call example
- Example#5970 - func_get_arg example
- Example#5971 - func_get_arg example before and
after PHP 5.3
- Example#5972 - func_get_arg example of byref and byval arguments
- Example#5973 - func_get_args example
- Example#5974 - func_get_args example before and
after PHP 5.3
- Example#5975 - func_get_args example of byref and byval arguments
- Example#5976 - func_num_args example
- Example#5977 - func_num_args example before and
after PHP 5.3
- Example#5978 - function_exists example
- Example#5979 - get_defined_functions example
- Example#5980 - register_shutdown_function example
- Example#5981 - register_tick_function example
- Example#5982 - Quickhash Example
- Example#5983 - Quickhash ArrayAccess Example
- Example#5984 - Quickhash Iterator Example
- Example#5985 - Quickhash String Values Example
- Example#5986 - QuickHashIntSet::add example
- Example#5987 - QuickHashIntSet::__construct example
- Example#5988 - QuickHashIntSet::delete example
- Example#5989 - QuickHashIntSet::exists example
- Example#5990 - QuickHashIntSet::getSize example
- Example#5991 - QuickHashIntSet::loadFromFile example
- Example#5992 - QuickHashIntSet::loadFromString example
- Example#5993 - QuickHashIntSet::saveToFile example
- Example#5994 - QuickHashIntSet::saveToString example
- Example#5995 - QuickHashIntHash::add example
- Example#5996 - QuickHashIntHash::__construct example
- Example#5997 - QuickHashIntHash::delete example
- Example#5998 - QuickHashIntHash::exists example
- Example#5999 - QuickHashIntHash::get example
- Example#6000 - QuickHashIntHash::getSize example
- Example#6001 - QuickHash IntHash file format
- Example#6002 - QuickHash IntHash file format
- Example#6003 - QuickHashIntHash::loadFromFile example
- Example#6004 - QuickHashIntHash::loadFromString example
- Example#6005 - QuickHashIntHash::saveToFile example
- Example#6006 - QuickHashIntHash::saveToString example
- Example#6007 - QuickHashIntHash::set example
- Example#6008 - QuickHashIntHash::update example
- Example#6009 - QuickHashStringIntHash::add example
- Example#6010 - QuickHashStringIntHash::__construct example
- Example#6011 - QuickHashStringIntHash::delete example
- Example#6012 - QuickHashStringIntHash::get example
- Example#6013 - QuickHashStringIntHash::getSize example
- Example#6014 - QuickHash StringIntHash file format
- Example#6015 - QuickHash IntHash file format
- Example#6016 - QuickHashStringIntHash::loadFromFile example
- Example#6017 - QuickHashStringIntHash::loadFromString example
- Example#6018 - QuickHashStringIntHash::saveToFile example
- Example#6019 - QuickHashStringIntHash::saveToString example
- Example#6020 - QuickHashStringIntHash::set example
- Example#6021 - QuickHashStringIntHash::update example
- Example#6022 - QuickHashIntStringHash::add example
- Example#6023 - QuickHashIntStringHash::__construct example
- Example#6024 - QuickHashIntStringHash::delete example
- Example#6025 - QuickHashIntStringHash::get example
- Example#6026 - QuickHashIntStringHash::getSize example
- Example#6027 - QuickHash IntString file format
- Example#6028 - QuickHash IntString file format
- Example#6029 - QuickHashIntStringHash::loadFromFile example
- Example#6030 - QuickHashIntStringHash::loadFromString example
- Example#6031 - QuickHashIntStringHash::saveToFile example
- Example#6032 - QuickHashIntStringHash::saveToString example
- Example#6033 - QuickHashIntStringHash::set example
- Example#6034 - QuickHashIntStringHash::update example
- Example#6035 - Reflection Example from Shell (a Terminal)
- Example#6036 - Extending the built-in classes
- Example#6037 - Basic usage ReflectionClass
- Example#6038 - Basic usage of ReflectionClass::export
- Example#6039 - Basic usage of ReflectionClass::getConstructor
- Example#6040 - ReflectionClass::getDefaultProperties example
- Example#6041 - ReflectionClass::getDocComment example
- Example#6042 - ReflectionClass::getEndLine example
- Example#6043 - Basic usage of ReflectionClass::getExtension
- Example#6044 - Basic usage of ReflectionClass::getExtensionName
- Example#6045 - ReflectionClass::getInterfaceNames example
- Example#6046 - ReflectionClass::getInterfaces example
- Example#6047 - Basic usage of ReflectionClass::getMethod
- Example#6048 - Basic usage of ReflectionClass::getMethods
- Example#6049 - Filtering results from ReflectionClass::getMethods
- Example#6050 - ReflectionClass::getName example
- Example#6051 - ReflectionClass::getNamespaceName example
- Example#6052 - ReflectionClass::getProperties filtering example
- Example#6053 - Basic usage of ReflectionClass::getProperty
- Example#6054 - ReflectionClass::getShortName example
- Example#6055 - Basic usage of ReflectionClass::getStaticPropertyValue
- Example#6056 - ReflectionClass::hasConstant example
- Example#6057 - ReflectionClass::hasMethod example
- Example#6058 - ReflectionClass::hasProperty example
- Example#6059 - ReflectionClass::inNamespace example
- Example#6060 - ReflectionClass::isAbstract example
- Example#6061 - ReflectionClass::isAnonymous example
- Example#6062 - Basic usage of ReflectionClass::isCloneable
- Example#6063 - ReflectionClass::isFinal example
- Example#6064 - ReflectionClass::isInstance related examples
- Example#6065 - ReflectionClass::isInstantiable example
- Example#6066 - Basic usage of ReflectionClass::isInterface
- Example#6067 - Basic usage of ReflectionClass::isInternal
- Example#6068 - ReflectionClass::isIterateable example
- Example#6069 - Basic usage of ReflectionClass::newInstanceArgs
- Example#6070 - ReflectionClass::__toString example
- Example#6071 - ReflectionExtension example
- Example#6072 - ReflectionExtension::getClasses example
- Example#6073 - ReflectionExtension::getClassNames example
- Example#6074 - ReflectionExtension::getConstants example
- Example#6075 - ReflectionExtension::getDependencies example
- Example#6076 - ReflectionExtension::getFunctions example
- Example#6077 - ReflectionExtension::getINIEntries example
- Example#6078 - ReflectionExtension::getName example
- Example#6079 - ReflectionExtension::getVersion example
- Example#6080 - ReflectionExtension::info example
- Example#6081 - ReflectionFunction::__construct example
- Example#6082 - ReflectionFunction::invoke example
- Example#6083 - ReflectionFunction::invokeArgs example
- Example#6084 - ReflectionFunction::invokeArgs with references example
- Example#6085 - ReflectionFunction::__toString example
- Example#6086 - ReflectionFunctionAbstract::getReturnType example
- Example#6087 - Usage on built-in functions
- Example#6088 - ReflectionFunctionAbstract::hasReturnType example
- Example#6089 - Usage on built-in functions
- Example#6090 - ReflectionFunctionAbstract::isClosure example
- Example#6091 - ReflectionFunctionAbstract::isDeprecated example
- Example#6092 - ReflectionMethod::__construct example
- Example#6093 - ReflectionMethod::getDeclaringClass example
- Example#6094 - ReflectionMethod::getModifiers example
- Example#6095 - ReflectionMethod::getPrototype example
- Example#6096 - ReflectionMethod::invoke example
- Example#6097 - ReflectionMethod::invokeArgs example
- Example#6098 - ReflectionMethod::__toString example
- Example#6099 - Using the ReflectionParameter class
- Example#6100 - Using the ReflectionParameter class
- Example#6101 - Getting the class that declared the method
- Example#6102 - Getting
- Example#6103 - ReflectionParameter::getType example
- Example#6104 - ReflectionParameter::hasType example
- Example#6105 - ReflectionProperty::__construct example
- Example#6106 - Getting value from private and protected properties using ReflectionProperty class
- Example#6107 - ReflectionProperty::getDocComment example
- Example#6108 - ReflectionProperty::getValue example
- Example#6109 - ReflectionClass::isDefault example
- Example#6110 - ReflectionProperty::setValue example
- Example#6111 - ReflectionType::allowsNull example
- Example#6112 - ReflectionType::isBuiltin example
- Example#6113 - ReflectionType::__toString example
- Example#6114 - ReflectionGenerator::__construct example
- Example#6115 - ReflectionGenerator::getExecutingFile example
- Example#6116 - ReflectionGenerator::getExecutingGenerator example
- Example#6117 - ReflectionGenerator::getExecutingLine example
- Example#6118 - ReflectionGenerator::getFunction example
- Example#6119 - ReflectionGenerator::getThis example
- Example#6120 - ReflectionGenerator::getTrace example
- Example#6121 - boolval examples
- Example#6122 - debug_zval_dump example
- Example#6123 -
- Example#6124 -
- Example#6125 - O simplă conparație între empty / isset.
- Example#6126 - empty cu deplasamente în șiruri de caractere
- Example#6127 - Exemplu floatval
- Example#6128 - Exemplu floatval cu cele mai din stânga caractere non-numerice
- Example#6129 - Exemplu get_defined_vars
- Example#6130 - Exemplu get_resource_type
- Example#6131 - Exemplu gettype
- Example#6132 - Exemplu import_request_variables
- Example#6133 - Exemple intval
- Example#6134 - Verifică dacă variabla este un array
- Example#6135 - Exemple is_bool
- Example#6136 - Exemplu is_callable
- Example#6137 - is_callable și constructori
- Example#6138 - Exemplu is_float
- Example#6139 - is_int example
- Example#6140 - Exemplu is_null
- Example#6141 - Exemple is_numeric
- Example#6142 - Exemplu is_object
- Example#6143 - Exemplu is_resource
- Example#6144 - Exemplu is_scalar
- Example#6145 - Exemplu is_string
- Example#6146 - Ecemple isset
- Example#6147 - isset cu deplasamente în șiruri de caractere
- Example#6148 - Exemplu print_r
- Example#6149 - Exemplu cu parametrul return
- Example#6150 - Exemplu serialize
- Example#6151 - Exemplu settype
- Example#6152 - Exemplu strval cu utilizarea metodei magice a PHP 5
__toString().
- Example#6153 - Exemplu unserialize
- Example#6154 - Exemplu unserialize_callback_func
- Example#6155 - Exemplu unset
- Example#6156 - Utilizarea modificatorului (unset)
- Example#6157 - Exemple var_dump
- Example#6158 - Exemple var_export
- Example#6159 - Exportarea claselor începând cu PHP 5.1.0
- Example#6160 - Utilizarea __set_state() (începând cu PHP 5.1.0)
- Example#6161 -
- Example#6162 - OAuth::fetch example
- Example#6163 - OAuth::getAccessToken example
- Example#6164 - OAuth::getRequestToken example
- Example#6165 - OAuth::setRequestEngine example
- Example#6166 - An OAuth::setRsaCertificate example
- Example#6167 - OAuth::setToken example
- Example#6168 - OAuthProvider::__construct example
- Example#6169 - Example OAuthProvider::consumerHandler callback
- Example#6170 - OAuthProvider::generateToken example
- Example#6171 - OAuthProvider::is2LeggedEndpoint example
- Example#6172 - Example OAuthProvider::timestampNonceHandler callback
- Example#6173 - Example OAuthProvider::tokenHandler callback
- Example#6174 - A sample SCA component
- Example#6175 - The structure of an SCA for PHP component
- Example#6176 - Obtaining a proxy for a local PHP class
- Example#6177 - Obtaining a proxy for a web service
- Example#6178 - Calling services
- Example#6179 - Obtaining a proxy using getService
- Example#6180 - Making calls on the proxy
- Example#6181 - StockQuote Service
- Example#6182 - Generated WSDL
- Example#6183 - Generated WSDL
- Example#6184 - location attribute
- Example#6185 - method with two arguments
- Example#6186 - types section illustrating named parameters
- Example#6187 - A Component that uses Data Structures
- Example#6188 - An SCA::getService example
- Example#6189 - is_soap_fault example
- Example#6190 - SOAP's standard method for error reporting is exceptions
- Example#6191 - SoapClient::__doRequest example
- Example#6192 - SoapClient::__getFunctions example
- Example#6193 - SoapClient::__getLastRequest() example
- Example#6194 - SoapClient::__getLastRequestHeaders() example
- Example#6195 - SoapClient::__getLastResponse() example
- Example#6196 - SoapClient::__getLastResponse() example
- Example#6197 - SoapClient::__getTypes example
- Example#6198 - SoapClient::__setLocation example
- Example#6199 - SoapClient::__setSoapHeaders example
- Example#6200 - Set Multiple Headers
- Example#6201 - SoapClient::__soapCall example
- Example#6202 - SoapClient::SoapClient example
- Example#6203 - SoapServer::addFunction example
- Example#6204 - SoapServer::getFunctions example
- Example#6205 - SoapServer::handle example
- Example#6206 - SoapServer::setPersistence example
- Example#6207 - SoapServer::SoapServer example
- Example#6208 - Some examples
- Example#6209 - Some examples
- Example#6210 - SoapHeader::SoapHeader example
- Example#6211 - SoapParam::SoapParam example
- Example#6212 - SoapVar::SoapVar example
- Example#6213 - Yar Server Example
- Example#6214 - Access the server in borwser(GET request)
- Example#6215 - Yar Client Example
- Example#6216 - Yar Concurrent Client Example
- Example#6217 - Yar_Server::__construct example
- Example#6218 - Yar_Server::handle example
- Example#6219 - Yar_Client::__call example
- Example#6220 - Yar_Client::__construct example
- Example#6221 - Yar_Client::setOpt example
- Example#6222 - Yar_Concurrent_Client::call example
- Example#6223 - Yar_Concurrent_Client::loop example
- Example#6224 - Yar_Concurrent_Client::reset example
- Example#6225 - Yar_Server_Exception::getType example
- Example#6226 - Yar_Client_Exception::getType example
- Example#6227 - Exemplu al funcțiilor client XMLRPC
- Example#6228 - Exemplu cu tip XML-RPC
- Example#6229 - Un exemplu xmlrpc_set_type
- Example#6230 - For Each in ASP
- Example#6231 - foreach in PHP
- Example#6232 - COM example (1)
- Example#6233 - COM example (2)
- Example#6234 - DOTNET example
- Example#6235 - Variant example, PHP 4.x style
- Example#6236 - Variant example, PHP 5 style
- Example#6237 - COM event sink example
- Example#6238 - Statistics about the current PHP process
- Example#6239 - Statistics about global memory utilization
- Example#6240 - Registering a PHP script to run as a service
- Example#6241 - Unregistering a service
- Example#6242 - Running as a service
- Example#6243 - A win32_create_service example
- Example#6244 - A win32_delete_service example
- Example#6245 - A win32_start_service_ctrl_dispatcher example
- Example#6246 - book.xml
- Example#6247 - Creating a new DOMAttr object
- Example#6248 - DOMAttr::isId() Example
- Example#6249 - Creating a new DOMCdataSection object
- Example#6250 - Creating a new DOMComment
- Example#6251 - Creating a new DOMDocument
- Example#6252 - Creating a new element and inserting it as root
- Example#6253 - Passing text containing an unescaped & as value
- Example#6254 - Creating a new element and inserting it as root
- Example#6255 - A namespace prefix example
- Example#6256 - DOMDocument::getElementById() Example
- Example#6257 - Basic Usage Example
- Example#6258 - Get all the XInclude elements
- Example#6259 - DOMDocument::importNode example
- Example#6260 - Creating a Document
- Example#6261 - Creating a Document
- Example#6262 - Creating a Document
- Example#6263 - Creating a Document
- Example#6264 - Static invocation of loadXML
- Example#6265 - Adding a new method to DOMElement to ease our code
- Example#6266 - Retrieving elements as custom class
- Example#6267 - Retrieving owner document
- Example#6268 - Saving a DOM tree into a file
- Example#6269 - Saving a HTML tree into a string
- Example#6270 - Saving a HTML tree into a file
- Example#6271 - Saving a DOM tree into a string
- Example#6272 - Example of DTD validation
- Example#6273 - DOMDocument::xinclude() example
- Example#6274 - Appending XML data to your document
- Example#6275 - Creating a new DOMElement
- Example#6276 - Setting an attribute
- Example#6277 - Creating a new DOMEntityReference
- Example#6278 - Creating a document with an attached DTD
- Example#6279 - Testing your DOM Implementation
- Example#6280 - Adding a child
- Example#6281 - DOMNode::getLineNo example
- Example#6282 - DOMNode::getNodePath example
- Example#6283 - Removing a child
- Example#6284 - Traversing all the entries of the table
- Example#6285 - Creating a new DOMProcessingInstruction object
- Example#6286 - Creating a new DOMText
- Example#6287 - Getting the count of all the english books
- Example#6288 - Getting all the english books
- Example#6289 - book.xml
- Example#6290 - DOMXPath::registerPHPFunctions with php:functionString
- Example#6291 - DOMXPath::registerPHPFunctions with php:function
- Example#6292 - Import SimpleXML into DOM with dom_import_simplexml
- Example#6293 - A libxml_get_errors example
- Example#6294 - libxml_set_external_entity_loader example
- Example#6295 - A libxml_set_streams_context example
- Example#6296 - A libxml_use_internal_errors example
- Example#6297 - Access via property name
- Example#6298 - Access via property name as array index
- Example#6299 - Data Object iteration
- Example#6300 - Access many-valued property by name
- Example#6301 - Many-valued element access
- Example#6302 - Many-valued property iteration
- Example#6303 - Chained property access
- Example#6304 - XPath navigation
- Example#6305 - XPath querying
- Example#6306 - Creating child data objects
- Example#6307 - Unset a primitive property
- Example#6308 - Unset a data object
- Example#6309 - Unset a referenced data object
- Example#6310 - Access via property index
- Example#6311 - Getting the SDO_Sequence interface
- Example#6312 - Get/set sequence values
- Example#6313 - Sequence iteration
- Example#6314 - Sequence versus Data Object
- Example#6315 - Adding to a sequence
- Example#6316 - Removing from a sequence
- Example#6317 - Reflecting on a Data Object
- Example#6318 - Accessing the type information
- Example#6319 - A
SDO_DAS_DataFactory::addPropertyToType
example
- Example#6320 - A
SDO_DAS_DataFactory::addType
example
- Example#6321 - Creating a data object
- Example#6322 - Retrieving a data object
- Example#6323 - Updating a data object
- Example#6324 - Deleting a data object
- Example#6325 - One company, one department - Create
- Example#6326 - One company, one department - Retrieve and Update
- Example#6327 - One company, two departments - Retrieve and Delete
- Example#6328 - One company, one department, one employee - Create
- Example#6329 - One company, one department, one employee - Retrieve and update
- Example#6330 - One company, two departments, two employees - Retrieve and delete
- Example#6331 - Retrieving a data object using
executePreparedQuery
- Example#6332 - Loading, altering, and saving an XML document
- Example#6333 - Creating a new XML document
- Example#6334 - Setting XML document properties
- Example#6335 - Using an open type
- Example#6336 - Finding out what you can from the document
- Example#6337 - Printing the SDO model
- Example#6338 - Include file example.php with XML string
- Example#6339 - Getting <plot>
- Example#6340 - Getting <line>
- Example#6341 - Accessing non-unique elements in SimpleXML
- Example#6342 - Using attributes
- Example#6343 - Comparing Elements and Attributes with Text
- Example#6344 - Comparing Two Elements
- Example#6345 - Using XPath
- Example#6346 - Setting values
- Example#6347 - Adding elements and attributes
- Example#6348 - DOM Interoperability
- Example#6349 - Loading broken XML string
- Example#6350 - Add attributes and children to a SimpleXML element
- Example#6351 - Add attributes and children to a SimpleXML element
- Example#6352 - Get XML
- Example#6353 - Using asXML() on SimpleXMLElement::xpath results
- Example#6354 - Interpret an XML string
- Example#6355 - Traversing a children() pseudo-array
- Example#6356 - Using namespaces
- Example#6357 - Create a SimpleXMLElement object
- Example#6358 - Create a SimpleXMLElement object from a URL
- Example#6359 - Counting the number of children
- Example#6360 - Get document namespaces
- Example#6361 - Working with multiple namespaces
- Example#6362 - Get XML element names
- Example#6363 - Get document namespaces in use
- Example#6364 - Setting a namespace prefix to use in an XPath query
- Example#6365 - Get string content
- Example#6366 - Xpath
- Example#6367 - Return the current element
- Example#6368 - Return the sub-elements of the current element
- Example#6369 - Check whether the current element has sub-elements
- Example#6370 - Get the current XML tag key
- Example#6371 - Move to the next element
- Example#6372 - Rewind to the first element
- Example#6373 - Check whether the current element is valid
- Example#6374 - Importing DOM
- Example#6375 - Interpret an XML document
- Example#6376 - Interpret an XML string
- Example#6377 - Serializarea unei singure valori cu WDDX
- Example#6378 - Utilizarea pachetelor incrementale cu WDDX
- Example#6379 - Exemplu wddx_serialize_vars
- Example#6380 - Show XML Element Structure
- Example#6381 - Map XML to HTML
- Example#6382 - External Entity Example
- Example#6383 - xmltest.xml
- Example#6384 - xmltest2.xml
- Example#6385 - xml_parse_into_struct example
- Example#6386 - moldb.xml - small database of molecular information
- Example#6387 - parsemoldb.php - parses moldb.xml into an array of
molecular objects
- Example#6388 - xml_set_object example
- Example#6389 - Validating XML
- Example#6390 - collection.xml
- Example#6391 - collection.xsl
- Example#6392 - fruits.xml
- Example#6393 - fruits.xsl
- Example#6394 - Collating and printing errors
- Example#6395 - Creating an XSLTProcessor
- Example#6396 - Testing EXSLT support
- Example#6397 - Simple PHP Function call from a stylesheet
- Example#6398 - Changing the owner before the transformation
- Example#6399 - Example profiling output
- Example#6400 - Transforming to a DOMDocument
- Example#6401 - Transforming to a HTML file
- Example#6402 - Transforming to a string
- Example#6403 - Leak Detection in Action
- Example#6404 - Accessor macros for per-module globals
- Example#6405 - "counter"'s basic interface
- Example#6406 - "counter"'s extended interface
- Example#6407 - "counter"'s objective interface
- Example#6408 - An example config.m4 file
- Example#6409 - Sample configure output
- Example#6410 - counter's config.m4 file
- Example#6411 - An example config.w32 file
- Example#6412 - counter's config.w32 file
- Example#6413 - Files in the counter extension, in no particular order
- Example#6414 - zend_module declaration in the counter extension
- Example#6415 - zend_module definition in PHP 5.3
- Example#6416 - Counter extension module definition
- Example#6417 - The wrong way to store the basic counter interface's value
- Example#6418 - The counter module's globals
- Example#6419 - The counter module's global structure declaration
- Example#6420 - Accessor macros for per-module globals
- Example#6421 - The right way to store the basic counter interface's value
- Example#6422 - counter's PHP_MINFO function
- Example#6423 - Example macros for invoking pdo_SKEL_error
- Example#6424 - Using pdo_parse_params
- Example#6425 - Implementing preparer for drivers that don't support native prepared statements
- Example#6426 - simple stream example that displays the PHP home page
- Example#6427 - How to accept a stream as a parameter
- Example#6428 - How to return a stream from a function
- Example#6429 - The default config.m4.
- Example#6430 - A simple extension.
- Example#6431 - A test file for first_module.so.
- Example#6432 - Internal declaration of zend_function_entry.
- Example#6433 - Internal declaration of zend_module_entry.
- Example#6434 - PHP's implementation of variable arguments in fsockopen().
- Example#6435 - PHP/Zend zval type definition.
- Example#6436 - Testing for referenced parameter passing.
- Example#6437 - Creating variables with different scopes.
- Example#6438 - Creation of a long.
- Example#6439 - Adding an element to an associative array.
- Example#6440 - Adding an element to an indexed array.
- Example#6441 - Source code and screenshot for output in phpinfo.
- Example#6442 - Printing execution information.
- Example#6443 - Calling user functions.
- Example#6444 - A hidden HTML form element
- Example#6445 - Data to be edited by the user
- Example#6446 - In a URL
- Example#6447 - Generating Javascript with PHP
- Example#6448 - Emulating Register Globals
- Example#6449 - Exemplu de cod PHP/FI
- Example#6450 - În nucleul PHP
- Example#6451 - Cod-sursă obiect-orientat în nucleul PHP
- Example#6452 - În extensia bzip2
- Example#6453 - În extensia datetime
- Example#6454 - În extensia dBase
- Example#6455 - În extensia mcrypt
- Example#6456 - În extensia oci8
- Example#6457 - În extensia SPL
- Example#6458 - În extensia Semaphore (sysvmsg)
- Example#6459 - Un exemplu Zip 5.2.1+
- Example#6460 - strrpos și strripos acum utilizează
întregul string în calitate de 'ac'
- Example#6461 - Un obiect fără proprietăți nu mai este considerat "vid"
- Example#6462 - În unele cazuri clasele trebuie declarate înainte de a fi utilizate
- Example#6463 - Migrarea fișierelor de configurare Apache pentru PHP 5
- Example#6464 - Migrarea fișierelor de configurare Apache pentru PHP 5, modul CGI
- Example#6465 - Activează raportarea deplină a erorilor pe ecran pentru domeniul dev.
- Example#6466 - Adaugă un script de securitate pentru regiunile protejate
- Example#6467 - include_path în Unix
- Example#6468 - include_path în Windows
- Example#6469 - include_path în Unix, utilizând variabile de mediu ${USER}
- Example#6470 - string.rot13
- Example#6471 - string.toupper
- Example#6472 - string.tolower
- Example#6473 - string.strip_tags
- Example#6474 - convert.base64-encode &
convert.base64-decode
- Example#6475 - convert.quoted-printable-encode &
convert.quoted-printable-decode
- Example#6476 - zlib.deflate și
zlib.inflate
- Example#6477 - zlib.deflate simplu
- Example#6478 - bzip2.compress și
bzip2.decompress
- Example#6479 - Criptarea conținutului unui fișier utilizând 3DES
- Example#6480 - Citirea unui fișier criptat