« Function and Method listing
Search
Changelog »
PHP Manual
Index listing
Example listing
Example listing
List of all the examples in the manual
Example#0 - An introductory example
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 - Debian Install Example with Apache 2
Example#9 - Stopping and starting Apache once PHP is installed
Example#10 - Methods for listing additional PHP packages
Example#11 - Install PHP with MySQL, cURL
Example#12 - DNF Install Example
Example#13 - Restarting Apache once PHP is installed
Example#14 - Methods for listing additional PHP packages
Example#15 - Install PHP with MySQL, GD
Example#16 - OpenBSD Package Install Example
Example#17 - Partial lighttpd.conf
Example#18 - Spawning FastCGI Responders
Example#19 - Connecting to remote php-fastcgi instances
Example#20 - Recommended OpCache configuration
Example#21 - Recommended WinCache configuration
Example#22 - PHP and Apache 2.x as handler
Example#23 - PHP and Apache 2.x as CGI
Example#24 - Configure Apache to run PHP as FastCGI
Example#25 - Command line to configure IIS and PHP
Example#26 - Registry changes
Example#27 - Passing environment variables and PHP settings to a pool
Example#28 - set PHP settings in nginx.conf
Example#29 - phpinfo call
Example#30 - composer.json that requires a single package
Example#31 - Installing the MongoDB extension with PIE
Example#32 - php.ini Environment Variables
Example#33 - php.ini example
Example#34 - Apache configuration example
Example#35 - PHP Opening and Closing Tags
Example#36 - PHP Code Only File
Example#37 - Embedding PHP in HTML
Example#38 - Advanced escaping using conditions
Example#39 - Example showing the closing tag encompassing the trailing newline
Example#40 - Examples of entering and exiting the PHP parser
Example#41 - Comments
Example#42 - One Line Comments
Example#43 - Different Types
Example#44 - Casting to Boolean
Example#45 - Integer literals
Example#46 - Integer overflow
Example#47 - Divisions
Example#48 - Casting from Float
Example#49 - Comparing Floats
Example#50 - Syntax Variants
Example#51 - Basic Heredoc example as of PHP 7.3.0
Example#52 - Closing identifier must not be indented further than any lines of the body
Example#53 - Different indentation for body (spaces) closing identifier
Example#54 - Continuing an expression after a closing identifier
Example#55 - Closing identifier in body of the string tends to cause ParseError
Example#56 - Invalid example, prior to PHP 7.3.0
Example#57 - Valid example, even prior to PHP 7.3.0
Example#58 - Heredoc string quoting example
Example#59 - Heredoc in arguments example
Example#60 - Using Heredoc to initialize static values
Example#61 - Using double quotes in Heredoc
Example#62 - Nowdoc string quoting example
Example#63 - Nowdoc string quoting example with variables
Example#64 - Static data example
Example#65 - String Interpolation
Example#66 - Interpolating the value of the first dimension of an array or property
Example#67 - Negative numeric indices
Example#68 - Curly Syntax
Example#69 - Some string examples
Example#70 - Example of Illegal String Offsets
Example#71 - Scientific Notation Comparisons
Example#72 - A simple array
Example#73 - Type Casting and Overwriting example
Example#74 - Mixed int and string keys
Example#75 - Indexed arrays without key
Example#76 - Keys not on all elements
Example#77 - Complex Type Casting and Overwriting example
Example#78 - Negative index example
Example#79 - Accessing array elements
Example#80 - Array dereferencing
Example#81 - Using Square Brackets with Arrays
Example#82 - Array Destructuring
Example#83 - Array Destructuring in Foreach
Example#84 - Ignoring Elements
Example#85 - Destructuring Associative Arrays
Example#86 - Swapping Two Variable
Example#87 - Unsetting Intermediate Elements
Example#88 - Key Quoting
Example#89 - More Examples
Example#90 - Converting to an Array
Example#91 - Casting an Object to an Array
Example#92 - Simple array unpacking
Example#93 - Array unpacking with duplicate key
Example#94 - Array Versatility
Example#95 - Using array()
Example#96 - Collection
Example#97 - Changing element in the loop
Example#98 - One-based index
Example#99 - Filling an array
Example#100 - Sorting an array
Example#101 - Recursive and multi-dimensional arrays
Example#102 - Array Copying
Example#103 - Object Construction
Example#104 - Casting to an Object
Example#105 - (object) cast
Example#106 - Callback example using a Closure
Example#107 - Calling various types of callables with call_user_function
Example#108 - Iterable generator return type example
Example#109 - Typed pass-by-reference Parameters
Example#110 - Old way to make arguments nullable
Example#111 - Basic class type declaration
Example#112 - Basic interface type declaration
Example#113 - Basic return type declaration
Example#114 - Returning an object
Example#115 - Nullable argument type declaration
Example#116 - Nullable return type declaration
Example#117 - Class property type declaration
Example#118 - Strict typing for arguments values
Example#119 - Coercive typing for argument values
Example#120 - Strict typing for return values
Example#121 - Example of types being coerced into a type part of the union
Example#122 - Type Casting
Example#123 - Different Casting Mechanisms
Example#124 - Using Array Offset with a String
Example#125 - Valid variable names
Example#126 - Invalid variable names
Example#127 - Accessing obscure variable names
Example#128 - Default value of an uninitialized variable
Example#129 - Autovivification of an array from an undefined variable
Example#130 - Example of global variable scope
Example#131 - Example of local variable scope
Example#132 - Using global
Example#133 - Using $GLOBALS instead of global
Example#134 - Example demonstrating superglobals and scope
Example#135 - Example demonstrating need for static variables
Example#136 - Example use of static variables
Example#137 - Static variables with recursive functions
Example#138 - Declaring static variables
Example#139 - Static variables in anonymous functions
Example#140 - Usage of static Variables in Inherited Methods
Example#141 - Variable property example
Example#142 - A simple HTML form
Example#143 - Accessing data from a simple POST HTML form
Example#144 - More complex form variables
Example#145 - A setcookie example
Example#146 - Valid and invalid constant names
Example#147 - Defining Constants
Example#148 - Defining Constants using the const keyword
Example#149 - Associativity
Example#150 - Explicit Precedence
Example#151 - Undefined order of evaluation
Example#152 - +, - and . precedence
Example#153 - Prior to PHP 8, +, - and . had the same precedence
Example#154 - The Modulo Operator
Example#155 - Examples of Increment/Decrement
Example#156 - PERL string increment example
Example#157 - Alphanumerical string converted to float
Example#158 - Nested Assignments
Example#159 - Combined Assignments
Example#160 - Assigning by reference
Example#161 - new Operator By-Reference
Example#162 - Bitwise AND, OR and XOR operations on integers
Example#163 - Bitwise XOR operations on strings
Example#164 - Bit shifting on integers
Example#165 - Comparison Operators
Example#166 - Boolean/null comparison
Example#167 - Transcription of standard array comparison
Example#168 - Assigning a default value
Example#169 - Non-obvious Ternary Behaviour
Example#170 - Short-ternary chaining
Example#171 - Assigning a default value
Example#172 - Nesting null coalescing operator
Example#173 - Intentional file error
Example#174 - Suppressing Expressions
Example#175 - Backtick Operator
Example#176 - Logical operators illustrated
Example#177 - String Concatenating
Example#178 - Array Append Operator
Example#179 - Comparing arrays
Example#180 - Using instanceof with classes
Example#181 - Using instanceof with inherited classes
Example#182 - Using instanceof to check if object is not an instanceof a class
Example#183 - Using instanceof with interfaces
Example#184 - Using instanceof with other variables
Example#185 - Using instanceof to test other variables
Example#186 - Using instanceof to test constants
Example#187 - Using instanceof with an arbitrary expression
Example#188 - Using |>
Example#189 - Chaining |> calls
Example#190 - Common foreach usages
Example#191 - Iterate a constant array's values by reference
Example#192 - switch structure
Example#193 - Basic match usage
Example#194 - Example of using match with comparison operators
Example#195 - Structure of a match expression
Example#196 - Example of an unhandled match expression
Example#197 - Using a generalized match expressions to branch on integer ranges
Example#198 - Using a generalized match expressions to branch on string content
Example#199 - Tick usage example
Example#200 - Declaring an encoding for the script
Example#201 - Basic include example
Example#202 - Including within functions
Example#203 - include through HTTP
Example#204 - Comparing return value of include
Example#205 - include and the return statement
Example#206 - Using output buffering to include a PHP file into a string
Example#207 - goto example
Example#208 - goto loop example
Example#209 - This will not work
Example#210 - Declaring a new function named foo
Example#211 - Conditional functions
Example#212 - Functions within functions
Example#213 - Recursive functions
Example#214 - Function parameter list with trailing comma
Example#215 - Passing function arguments by reference
Example#216 - Use of default parameters in functions
Example#217 - Using non-scalar types as default values
Example#218 - Using objects as default values (as of PHP 8.1.0)
Example#219 - Incorrect usage of default function parameters
Example#220 - Correct usage of default function parameters
Example#221 - Correct usage of default function parameters
Example#222 - Declaring optional parameters after mandatory parameters
Example#223 - Using ... to access variable arguments
Example#224 - Using ... to provide arguments
Example#225 - Type declared variable arguments
Example#226 - Named argument syntax
Example#227 - Positional arguments versus named arguments
Example#228 - Same example as above with a different order of parameters
Example#229 - Combining named arguments with positional arguments
Example#230 - Error thrown when passing an argument to the same named parameter multiple times
Example#231 - Use named arguments after unpacking
Example#232 - Use of return
Example#233 - Returning an array to get multiple values
Example#234 - Returning a reference from a function
Example#235 - Variable function example
Example#236 - Variable method example
Example#237 - Variable method example with static properties
Example#238 - Complex callables
Example#239 - Anonymous function example
Example#240 - Anonymous function variable assignment example
Example#241 - Inheriting variables from the parent scope
Example#242 - Closures and scoping
Example#243 - Automatic binding of $this
Example#244 - Attempting to use $this inside a static anonymous function
Example#245 - Attempting to bind an object to a static anonymous function
Example#246 - Arrow functions capture variables by value automatically
Example#247 - Arrow functions capture variables by value automatically, even when nested
Example#248 - Examples of arrow functions
Example#249 - Values from the outer scope cannot be modified by arrow functions
Example#250 - Simple first class callable syntax
Example#251 - Scope comparison of CallableExpr(...) and traditional callable
Example#252 - Simple Class definition
Example#253 - Some examples of the $this pseudo-variable
Example#254 - Creating an instance
Example#255 - Creating an instance using an arbitrary expression
Example#256 - Object Assignment
Example#257 - Creating new objects
Example#258 - Access member of newly created object
Example#259 - Property access vs. method call
Example#260 - Calling an anonymous function stored in a property
Example#261 - Simple Class Inheritance
Example#262 - Compatible child methods
Example#263 - Fatal error when a child method removes a parameter
Example#264 - Fatal error when a child method makes an optional parameter mandatory
Example#265 - Error when using named arguments and parameters were renamed in a child class
Example#266 - Class name resolution
Example#267 - Missing class name resolution
Example#268 - Object name resolution
Example#269 - Nullsafe Operator
Example#270 - Property declarations
Example#271 - Example of typed properties
Example#272 - Accessing properties
Example#273 - Example of readonly properties
Example#274 - Illegal initialization of readonly properties
Example#275 - Readonly properties and cloning
Example#276 - Property hooks (full version)
Example#277 - Property get expression
Example#278 - Property set defaults
Example#279 - Property set expression
Example#280 - Invalid virtual property
Example#281 - Virtual property
Example#282 - Calling a method from a hook
Example#283 - Final hooks
Example#284 - Hook inheritance
Example#285 - Parent hook access (set)
Example#286 - Parent hook access (get)
Example#287 - Defining and using a constant
Example#288 - Namespaced ::class example
Example#289 - Class constant expression example
Example#290 - Class constant visibility modifiers, as of PHP 7.1.0
Example#291 - Class constant visibility variance check, as of PHP 8.3.0
Example#292 - Fetch class constant syntax, as of PHP 8.3.0
Example#293 - Assigning types to class constants, as of PHP 8.3.0
Example#294 - Autoload example
Example#295 - Autoload other example
Example#296 - Using Composer's autoloader
Example#297 - Constructors in inheritance
Example#298 - Using constructor arguments
Example#299 - Using constructor property promotion
Example#300 - Using new in initializers
Example#301 - Using static creation methods
Example#302 - Destructor Example
Example#303 - Property declaration
Example#304 - Asymmetric Property visibility
Example#305 - Asymmetric Property inheritance
Example#306 - Method Declaration
Example#307 - Constant Declaration as of PHP 7.1.0
Example#308 - Accessing private members of the same object type
Example#309 - Inheritance Example
Example#310 - The overriding method does not declare any return type
Example#311 - The overriding method declares a wrong return type
Example#312 - The overriding method declares a wrong return type without a deprecation notice
Example#313 - :: from outside the class definition
Example#314 - :: from inside the class definition
Example#315 - Calling a parent's method
Example#316 - Static method example
Example#317 - Static property example
Example#318 - Abstract method example
Example#319 - Abstract method example
Example#320 - Abstract property example
Example#321 - Abstract property with hooks example
Example#322 - Interface properties example
Example#323 - Interface example
Example#324 - Extendable Interfaces
Example#325 - Variance compatibility with multiple interfaces
Example#326 - Multiple interface inheritance
Example#327 - Interfaces with constants
Example#328 - Interfaces with abstract classes
Example#329 - Extending and implementing simultaneously
Example#330 - Trait example
Example#331 - Precedence Order Example
Example#332 - Alternate Precedence Order Example
Example#333 - Multiple Traits Usage
Example#334 - Conflict Resolution
Example#335 - Changing Method Visibility
Example#336 - Traits Composed from Traits
Example#337 - Express Requirements by Abstract Methods
Example#338 - Static Variables
Example#339 - Static Methods
Example#340 - Static Properties
Example#341 - Defining Properties
Example#342 - Conflict Resolution
Example#343 - Defining Constants
Example#344 - Conflict Resolution
Example#345 - Defining a method coming from a trait as final
Example#346 - Defining a readonly anonymous class
Example#347 - Overloading properties via the __get(), __set(), __isset() and __unset() methods
Example#348 - Overloading methods via the __call() and __callStatic() methods
Example#349 - Simple Object Iteration
Example#350 - Sleep and wakeup
Example#351 - Serialize and unserialize
Example#352 - Simple example
Example#353 - Using __invoke()
Example#354 - Using __invoke()
Example#355 - Using __set_state()
Example#356 - Using __debugInfo()
Example#357 - Final methods example
Example#358 - Final class example
Example#359 - Final property example as of PHP 8.4.0
Example#360 - Final constants example as of PHP 8.1.0
Example#361 - Cloning an object
Example#362 - Access member of freshly cloned object
Example#363 - Example of object comparison
Example#364 - self:: usage
Example#365 - static:: simple usage
Example#366 - static:: usage in a non-static context
Example#367 - Forwarding and non-forwarding calls
Example#368 - References and Objects
Example#369 - Property type variance
Example#370 - Creating a Lazy Ghost
Example#371 - Creating a Lazy Proxy
Example#372 - Initializing Properties Eagerly
Example#373 - Namespace syntax example
Example#374 - Declaring a single namespace
Example#375 - Declaring a single namespace
Example#376 - Declaring a single namespace with hierarchy
Example#377 - Declaring multiple namespaces, simple combination syntax
Example#378 - Declaring multiple namespaces, bracketed syntax
Example#379 - Declaring multiple namespaces and unnamespaced code
Example#380 - Declaring multiple namespaces and unnamespaced code
Example#381 - Accessing global classes, functions and constants from within a namespace
Example#382 - Dynamically accessing elements
Example#383 - Dynamically accessing namespaced elements
Example#384 - __NAMESPACE__ example, namespaced code
Example#385 - __NAMESPACE__ example, global code
Example#386 - using __NAMESPACE__ for dynamic name construction
Example#387 - the namespace operator, inside a namespace
Example#388 - the namespace operator, in global code
Example#389 - importing/aliasing with the use operator
Example#390 - importing/aliasing with the use operator, multiple use statements combined
Example#391 - Importing and dynamic names
Example#392 - Importing and fully qualified names
Example#393 - Illegal importing rule
Example#394 - Using global space specification
Example#395 - Accessing global classes inside a namespace
Example#396 - global functions/constants fallback inside a namespace
Example#397 - Name resolutions illustrated
Example#398 - Accessing global classes outside a namespace
Example#399 - Accessing global classes outside a namespace
Example#400 - Accessing internal classes in namespaces
Example#401 - Accessing internal classes, functions or constants in namespaces
Example#402 - Fully Qualified names
Example#403 - Qualified names
Example#404 - Unqualified class names
Example#405 - Unqualified function or constant names
Example#406 - Dangers of using namespaced names inside a double-quoted string
Example#407 - Undefined constants
Example#408 - Undefined constants
Example#409 - Basic limited values
Example#410 - Advanced exclusive values
Example#411 - Converting error reporting to exceptions
Example#412 - Throwing an Exception
Example#413 - Exception handling with a finally block
Example#414 - Interaction between the finally block and return
Example#415 - Nested Exception
Example#416 - Multi catch exception handling
Example#417 - Omitting the caught variable
Example#418 - Throw as an expression
Example#419 - Exception in try and in finally
Example#420 - The Built in Exception class
Example#421 - Extending the Exception class
Example#422 - Basic usage
Example#423 - Implementing range as a generator
Example#424 - A simple example of yielding values
Example#425 - Yielding a key/value pair
Example#426 - Yielding nulls
Example#427 - Yielding values by reference
Example#428 - yield from with iterator_to_array
Example#429 - Basic use of yield from
Example#430 - yield from and return values
Example#431 - Implementing optional methods of an interface with Attributes
Example#432 - Attribute Syntax
Example#433 - Reading Attributes using Reflection API
Example#434 - Reading Specific Attributes using Reflection API
Example#435 - Simple Attribute Class
Example#436 - Using target specification to restrict where attributes can be used
Example#437 - Using IS_REPEATABLE to allow attribute on a declaration multiple times
Example#438 - Using references with undefined variables
Example#439 - Referencing global variables inside functions
Example#440 - References and foreach statement
Example#441 - $GLOBALS example
Example#442 - writing entire $GLOBALS will result in error.
Example#443 - $_SERVER example
Example#444 - $_GET example
Example#445 - $_POST example
Example#446 - $_ENV example
Example#447 - $_COOKIE example
Example#448 - $php_errormsg example
Example#449 - $http_response_header example
Example#450 - $argc example
Example#451 - $argv example
Example#452 - Exception::getMessage example
Example#453 - Exception::getPrevious example
Example#454 - Exception::getCode example
Example#455 - Exception::getFile example
Example#456 - Exception::getLine example
Example#457 - Exception::getTrace example
Example#458 - Exception::getTraceAsString example
Example#459 - Exception::__toString example
Example#460 - Use set_error_handler to change error messages into ErrorException
Example#461 - ErrorException::getSeverity example
Example#462 - Error::getMessage example
Example#463 - Error::getPrevious example
Example#464 - Error::getCode example
Example#465 - Error::getFile example
Example#466 - Error::getLine example
Example#467 - Error::getTrace example
Example#468 - Error::getTraceAsString example
Example#469 - Error::__toString example
Example#470 - Basic usage
Example#471 - Basic usage
Example#472 - Countable::count example
Example#473 - Basic usage
Example#474 - ArrayAccess::offsetExists example
Example#475 - Basic usage
Example#476 - Closure::bind example
Example#477 - Closure::bindTo example
Example#478 - Closure::call example
Example#479 - Created as a result of typecasting to object
Example#480 - Created as a result of json_decode
Example#481 - Declaring dynamic properties
Example#482 - Generator::getReturn example
Example#483 - Generator::key example
Example#484 - Generator::rewind example
Example#485 - Using Generator::send to inject values
Example#486 - Throwing an exception into a generator
Example#487 - Basic WeakReference Usage
Example#488 - Weakmap usage example
Example#489 - Basic Stringable Usage
Example#490 - Basic usage
Example#491 - Basic usage
Example#492 - Basic usage
Example#493 - Passing a SensitiveParameterValue object to var_dump
Example#494 - SensitiveParameterValue::getValue example
Example#495 - Created by unserialize
Example#496 - Usage with methods
Example#497 - Usage with properties
Example#498 - Basic bindto usage example
Example#499 - Fetch a page and send POST data
Example#500 - Ignore redirects but fetch headers and content
Example#501 - Basic password usage example
Example#502 - Detecting which URL we ended up on after redirects
Example#503 - php://temp/maxmemory
Example#504 - php://filter/resource=<stream to be filtered>
Example#505 - php://filter/read=<filter list to apply to read chain>
Example#506 - php://filter/write=<filter list to apply to write chain>
Example#507 - php://memory and php://temp are not reusable
Example#508 - php://input to read JSON data from the request body
Example#509 - Print data:// contents
Example#510 - Fetch the media type
Example#511 - Basic usage
Example#512 - Opening a stream from an active connection
Example#513 - This $session variable must be kept available!
Example#514 - Traversing a RAR archive
Example#515 - Opening an encrypted file (header encryption)
Example#516 - Poor variable checking leads to....
Example#517 - ... A filesystem attack
Example#518 - More secure file name checking
Example#519 - More secure file name checking
Example#520 - Script vulnerable to null bytes
Example#521 - Correctly validating the input
Example#522 - Hashing password field
Example#523 - Splitting the result set into pages ... and making superusers (PostgreSQL)
Example#524 - Listing out articles ... and some passwords (any database server)
Example#525 - From resetting a password ... to gaining more privileges (any database server)
Example#526 - Attacking the database host operating system (MSSQL Server)
Example#527 - Avoiding SQL injection by using PDO prepared statements
Example#528 - Attacking Variables with a custom HTML page
Example#529 - Exploiting common debugging variables
Example#530 - Finding dangerous variables with E_ALL
Example#531 - Dangerous Variable Usage
Example#532 - Hiding PHP as another language
Example#533 - Using unknown types for PHP extensions
Example#534 - Using HTML types for PHP extensions
Example#535 - Basic HTTP Authentication example
Example#536 - HTTP Authentication example forcing a new name/password
Example#537 - File Upload Form
Example#538 - Validating file uploads
Example#539 - Uploading array of files
Example#540 - Uploading multiple files
Example#541 - Uploading an entire directory
Example#542 - Saving HTTP PUT files
Example#543 - Getting the title of a remote page
Example#544 - Storing data on a remote server
Example#545 - Example showing the difference to the CGI SAPI:
Example#546 - Example of using -d to set an INI setting
Example#547 - Printing built in (and loaded) PHP and Zend modules
Example#548 - Getting a syntax error when using double quotes
Example#549 - Using single quotes to prevent the shell's variable substitution
Example#550 - Using the -B, -R and -E options to count the number of lines of a project.
Example#551 - Using -v to get the SAPI name and the version of PHP and Zend
Example#552 - --ini example
Example#553 - basic --rf usage
Example#554 - --rc example
Example#555 - --re example
Example#556 - --ri example
Example#557 - Execute PHP script as shell script
Example#558 - Script intended to be run from command line (script.php)
Example#559 - Batch file to run a command line PHP script (script.bat)
Example#560 - Executing code using the interactive shell
Example#561 - Tab completion
Example#562 - Setting php.ini settings in the interactive shell
Example#563 - Starting the web server
Example#564 - Starting with a specific document root directory
Example#565 - Using a Router Script
Example#566 - Checking for CLI Web Server Use
Example#567 - Handling Unsupported File Types
Example#568 - Accessing the CLI Web Server From Remote Machines
Example#569 - Creating a new zval container
Example#570 - Displaying zval information
Example#571 - Increasing refcount of a zval
Example#572 - Decreasing zval refcount
Example#573 - Creating a array zval
Example#574 - Adding already existing element to an array
Example#575 - Removing an element from an array
Example#576 - Adding the array as an element of itself
Example#577 - Unsetting $a
Example#578 - Memory usage example
Example#579 - GC performance influences
Example#580 - Running the above script
Example#581 - Recompiling PHP to enable GC benchmarking
Example#582 - GC statistics
Example#583 - all_probes.d for tracing all PHP Static Probes with DTrace
Example#584 - all_probes.stp for tracing all PHP Static Probes with SystemTap
Example#585 - A apcu_add example
Example#586 - A apcu_cache_info example
Example#587 - apcu_cas example
Example#588 - apcu_dec example
Example#589 - A apcu_delete example
Example#590 - An apcu_entry example
Example#591 - apcu_exists example
Example#592 - A apcu_fetch example
Example#593 - apcu_inc example
Example#594 - A apcu_key_info example
Example#595 - A apcu_sma_info example
Example#596 - A apcu_store example
Example#597 - A APCUIterator::__construct example
Example#598 - Using error handling in a script
Example#599 - debug_backtrace example
Example#600 - debug_print_backtrace example
Example#601 - An error_clear_last example
Example#602 - An error_get_last example
Example#603 - error_log examples
Example#604 - error_reporting examples
Example#605 - get_error_handler example
Example#606 - get_exception_handler example
Example#607 - restore_error_handler example
Example#608 - restore_exception_handler example
Example#609 - Error handling with set_error_handler and trigger_error
Example#610 - set_exception_handler example
Example#611 - trigger_error example
Example#612 - Calling a function from shared library
Example#613 - Calling a function, returning a structure through an argument
Example#614 - Accessing existing C variables
Example#615 - Creating and Modifying C variables
Example#616 - Working with C arrays
Example#617 - Working with C enums
Example#618 - Assigning a PHP Closure to a C function pointer
Example#619 - A opcache_get_status example
Example#620 - Output Control example
Example#621 - Output rewrite example
Example#622 - ob_end_clean example
Example#623 - ob_end_flush example
Example#624 - A simple ob_get_clean example
Example#625 - A simple ob_get_contents example
Example#626 - ob_get_flush example
Example#627 - A simple ob_get_length example
Example#628 - Array returned when full_status is false
Example#629 - Array returned when full_status is true
Example#630 - ob_list_handlers example
Example#631 - User defined callback function example
Example#632 - Creating an unerasable output buffer
Example#633 - output_add_rewrite_var example
Example#634 - output_reset_rewrite_vars example
Example#635 - assert example
Example#636 - Using a custom message
Example#637 - Using a custom exception class
Example#638 - assert_options example
Example#639 - cli_get_process_title example
Example#640 - cli_set_process_title example
Example#641 - dl examples
Example#642 - extension_loaded example
Example#643 - A gc_enabled example
Example#644 - gc_status Usage
Example#645 - get_current_user example
Example#646 - get_defined_constants Example
Example#647 - Prints the XML functions
Example#648 - get_include_path example
Example#649 - get_included_files example
Example#650 - get_loaded_extensions Example
Example#651 - Unfiltered get_resources
Example#652 - Filtered get_resources
Example#653 - getenv Example
Example#654 - getlastmod example
Example#655 - getopt example: The basics
Example#656 - getopt example: Introducing long options
Example#657 - getopt example: Passing multiple options as one
Example#658 - getopt example: Using rest_index
Example#659 - getrusage example
Example#660 - A few ini_get examples
Example#661 - ini_get_all examples
Example#662 - Disabling details
Example#663 - A few ini_parse_quantity examples
Example#664 - ini_restore example
Example#665 - Setting an ini option
Example#666 - A memory_get_usage example
Example#667 - memory_reset_peak_usage example
Example#668 - php_ini_loaded_file example
Example#669 - A simple example to list the returned ini files
Example#670 - php_sapi_name example
Example#671 - Some php_uname examples
Example#672 - A few OS related constant examples
Example#673 - Prints the general credits
Example#674 - Prints the core developers and the documentation group
Example#675 - Printing all the credits
Example#676 - phpinfo Example
Example#677 - phpversion example
Example#678 - PHP_VERSION_ID example and usage
Example#679 - Setting an environment variable
Example#680 - restore_include_path example
Example#681 - set_include_path example
Example#682 - Adding to the include path
Example#683 - sys_get_temp_dir example
Example#684 - version_compare examples
Example#685 - zend_thread_id example
Example#686 - zend_version example
Example#687 - Custom Superglobals with runkit.superglobal=_FOO,_BAR in php.ini
Example#688 - A runkit7_function_add example
Example#689 - A runkit7_function_copy example
Example#690 - A runkit7_function_redefine example
Example#691 - runkit7_method_add example
Example#692 - runkit7_method_copy example
Example#693 - runkit7_method_redefine example
Example#694 - runkit7_method_remove example
Example#695 - runkit7_method_rename example
Example#696 - runkit7_zval_inspect example
Example#697 - Basic uopz_add_function Usage
Example#698 - uopz_allow_exit example
Example#699 - uopz_backup example
Example#700 - uopz_compose example
Example#701 - uopz_copy example
Example#702 - Basic uopz_del_function Usage
Example#703 - uopz_delete example
Example#704 - uopz_delete class example
Example#705 - uopz_extend example
Example#706 - uopz_flags example
Example#707 - "Unfinalize" a Class
Example#708 - uopz_function example
Example#709 - uopz_function class example
Example#710 - uopz_get_exit_status example
Example#711 - Basic uopz_get_hook Usage
Example#712 - uopz_get_mock example
Example#713 - Basic uopz_get_property Usage
Example#714 - uopz_get_return example
Example#715 - Basic uopz_get_static Usage
Example#716 - uopz_implement example
Example#717 - uopz_overload example
Example#718 - uopz_redefine example
Example#719 - uopz_rename example
Example#720 - uopz_rename class example
Example#721 - uopz_restore example
Example#722 - Basic uopz_set_hook Usage
Example#723 - uopz_set_mock example
Example#724 - uopz_set_mock example
Example#725 - uopz_set_mock and static members
Example#726 - Basic uopz_set_property Usage
Example#727 - uopz_set_return example
Example#728 - uopz_set_return example
Example#729 - uopz_set_return class example
Example#730 - Basic uopz_set_static Usage
Example#731 - uopz_undefine example
Example#732 - Basic uopz_unset_hook Usage
Example#733 - uopz_unset_mock example
Example#734 - uopz_unset_return example
Example#735 - wincache.ignorelist example
Example#736 - Authentication configuration for wincache.php
Example#737 - Enabling WinCache session handler
Example#738 - Enabling WinCache functions reroutes
Example#739 - Reroute.ini file content
Example#740 - A wincache_fcache_fileinfo example
Example#741 - A wincache_fcache_meminfo example
Example#742 - Using wincache_lock
Example#743 - A wincache_ocache_fileinfo example
Example#744 - A wincache_ocache_meminfo example
Example#745 - A wincache_refresh_if_changed example
Example#746 - A wincache_rplist_fileinfo example
Example#747 - A wincache_rplist_meminfo example
Example#748 - A wincache_scache_info example
Example#749 - A wincache_scache_meminfo example
Example#750 - wincache_ucache_add with key as a string
Example#751 - wincache_ucache_add with key as an array
Example#752 - Using wincache_ucache_cas
Example#753 - using wincache_ucache_clear
Example#754 - Using wincache_ucache_dec
Example#755 - Using wincache_ucache_delete with key as a string
Example#756 - Usingwincache_ucache_delete with key as an array
Example#757 - Using wincache_ucache_delete with key as an array where some elements cannot be deleted
Example#758 - Using wincache_ucache_exists
Example#759 - wincache_ucache_get with key as a string
Example#760 - wincache_ucache_get with key as an array
Example#761 - Using wincache_ucache_inc
Example#762 - Using wincache_ucache_info
Example#763 - A wincache_ucache_meminfo example
Example#764 - wincache_ucache_set with key as a string
Example#765 - wincache_ucache_set with key as an array
Example#766 - Using wincache_unlock
Example#767 - Xhprof example with the optional GUI
Example#768 - xhprof_disable example
Example#769 - xhprof_enable examples
Example#770 - xhprof_sample_disable example
Example#771 - Make sure the item is stored
Example#772 - Using CHAP passwords
Example#773 - radius_acct_open example
Example#774 - radius_add_server example
Example#775 - radius_auth_open example
Example#776 - radius_create_request example
Example#777 - radius_cvt_addr example
Example#778 - radius_cvt_int example
Example#779 - radius_cvt_string example
Example#780 - radius_get_attr example
Example#781 - radius_get_tagged_attr_data example
Example#782 - radius_get_tagged_attr_tag example
Example#783 - radius_get_vendor_attr example
Example#784 - radius_put_attr example
Example#785 - radius_put_int example
Example#786 - radius_put_string example
Example#787 - radius_put_vendor_attr example
Example#788 - readline Example
Example#789 - Readline Callback Interface Example
Example#790 - Small bzip2 Example
Example#791 - Compressing data
Example#792 - Decompressing a String
Example#793 - bzerror example
Example#794 - bzopen example
Example#795 - bzread example
Example#796 - bzwrite example
Example#797 - Using an external file
Example#798 - Using a file within a phar archive
Example#799 - Converting a phar archive from phar to tar file format
Example#800 - phar.cache_list usage example
Example#801 - A Phar::addEmptyDir example
Example#802 - A Phar::addFile example
Example#803 - A Phar::addFromString example
Example#804 - A Phar::apiVersion example
Example#805 - A Phar::buildFromDirectory example
Example#806 - A Phar::buildFromIterator with SplFileInfo
Example#807 - A Phar::buildFromIterator with other iterators
Example#808 - A Phar::canCompress example
Example#809 - A Phar::canWrite example
Example#810 - A Phar::compress example
Example#811 - A Phar::compressFiles example
Example#812 - A Phar::__construct example
Example#813 - A Phar::convertToData example
Example#814 - A Phar::convertToExecutable example
Example#815 - A Phar::copy example
Example#816 - A Phar::count example
Example#817 - A Phar::createDefaultStub example
Example#818 - A Phar::decompress example
Example#819 - A Phar::decompressFiles example
Example#820 - A Phar::delMetaData example
Example#821 - A Phar::delete example
Example#822 - A Phar::extractTo example
Example#823 - A Phar::getMetadata example
Example#824 - A Phar::getStub example
Example#825 - A Phar::hasMetadata example
Example#826 - A Phar::interceptFileFuncs example
Example#827 - A Phar::interceptFileFuncs example
Example#828 - A Phar::isBuffering example
Example#829 - A Phar::isCompressed example
Example#830 - A Phar::loadPhar example
Example#831 - A Phar::mapPhar example
Example#832 - A Phar::mount example
Example#833 - A Phar::mungServer example
Example#834 - A Phar::offsetExists example
Example#835 - Phar::offsetGet example
Example#836 - A Phar::offsetSet example
Example#837 - A Phar::offsetUnset example
Example#838 - A Phar::running example
Example#839 - A Phar::setAlias example
Example#840 - A Phar::setDefaultStub example
Example#841 - A Phar::setMetadata example
Example#842 - A Phar::setStub example
Example#843 - A Phar::startBuffering example
Example#844 - A Phar::stopBuffering example
Example#845 - A Phar::unlinkArchive example
Example#846 - A Phar::webPhar example
Example#847 - A PharData::addEmptyDir example
Example#848 - A PharData::addFile example
Example#849 - A PharData::addFromString example
Example#850 - A PharData::buildFromDirectory example
Example#851 - A PharData::buildFromIterator with SplFileInfo
Example#852 - A PharData::buildFromIterator with other iterators
Example#853 - A PharData::compress example
Example#854 - A PharData::compressFiles example
Example#855 - A PharData::__construct example
Example#856 - A PharData::convertToData example
Example#857 - A PharData::convertToExecutable example
Example#858 - A PharData::copy example
Example#859 - A PharData::decompress example
Example#860 - A PharData::decompressFiles example
Example#861 - A PharData::delMetaData example
Example#862 - A PharData::delete example
Example#863 - A PharData::extractTo example
Example#864 - A PharData::offsetSet example
Example#865 - A PharData::offsetUnset example
Example#866 - A Phar::setMetadata example
Example#867 - A PharFileInfo::chmod example
Example#868 - A PharFileInfo::compress example
Example#869 - A PharFileInfo::__construct example
Example#870 - A PharFileInfo::decompress example
Example#871 - A PharFileInfo::delMetaData example
Example#872 - A PharFileInfo::getCRC32 example
Example#873 - A PharFileInfo::getCompressedSize example
Example#874 - A PharFileInfo::getMetadata example
Example#875 - A PharFileInfo::getPharFlags example
Example#876 - A PharFileInfo::isCRCChecked example
Example#877 - A PharFileInfo::isCompressed example
Example#878 - A PharFileInfo::setMetadata example
Example#879 - Rar installation
Example#880 - On-the-fly decompression
Example#881 - RAR extension filesystem extraction example
Example#882 - Object-oriented style
Example#883 - Procedural style
Example#884 - Object-oriented style
Example#885 - Procedural style
Example#886 - Object-oriented style
Example#887 - Procedural style
Example#888 - Object-oriented style
Example#889 - Procedural style
Example#890 - Object-oriented style
Example#891 - Procedural style
Example#892 - Object-oriented style
Example#893 - Procedural style
Example#894 - Object-oriented style
Example#895 - Procedural style
Example#896 - Volume Callback
Example#897 - Object-oriented style
Example#898 - Procedural style
Example#899 - RarArchive::__toString example
Example#900 - RarEntry::extract example
Example#901 - How to extract all files in archive:
Example#902 - RarEntry::getAttr example
Example#903 - RarEntry::getHostOs example (version >= 2.0.0)
Example#904 - RarEntry::getHostOs example (version <= 1.0.0)
Example#905 - RarEntry::getMethod example
Example#906 - RarEntry::getName example
Example#907 - RarEntry::getPackedSize example
Example#908 - RarEntry::getStream example
Example#909 - RarEntry::getUnpackedSize example
Example#910 - RarEntry::getVersion example
Example#911 - RarException::isUsingExceptions example
Example#912 - RarException::setUsingExceptions example
Example#913 - Create a Zip archive
Example#914 - Dump the archive details and listing
Example#915 - Zip stream wrapper, read an OpenOffice meta info
Example#916 - Zip Usage Example
Example#917 - Create a new directory in an archive
Example#918 - Open and add
Example#919 - Add an entry to a new archive
Example#920 - Add file to a directory inside an archive
Example#921 - ZipArchive::addGlob example
Example#922 - ZipArchive::addPattern example
Example#923 - Delete file from archive using its index
Example#924 - Deleting a file and directory from an archive, using names
Example#925 - Extract all entries
Example#926 - Extract two entries
Example#927 - Dump an archive comment
Example#928 - Test if archive is a torrentzip format
Example#929 - Dump an entry comment
Example#930 - Dump an entry comment
Example#931 - Extract all entries with Unix rights
Example#932 - Get the file contents
Example#933 - Get the file contents
Example#934 - Convert an image from a zip entry
Example#935 - ZipArchive::getNameIndex example
Example#936 - Get the entry contents with fread and store it
Example#937 - Same as the previous example but with fopen and the zip stream wrapper
Example#938 - Stream wrapper and image, can be used with the xml function as well
Example#939 - Get the entry contents with fread and store it
Example#940 - Get the entry contents with fread and store it
Example#941 - Create an archive and then use it with ZipArchive::locateName
Example#942 - Open and extract
Example#943 - Create an archive
Example#944 - Create an temporary archive
Example#945 - Archive a file
Example#946 - Archive a file
Example#947 - Rename one entry
Example#948 - Rename one entry
Example#949 - Open and replace
Example#950 - Create an archive and set a comment
Example#951 - Create a torrentzip archive
Example#952 - Open an archive and set a comment for an entry
Example#953 - Open an archive and set a comment for an entry
Example#954 - Add files with different compression methods to an archive
Example#955 - Add files with different compression methods to an archive
Example#956 - Add file and set compression method
Example#957 - Archive and encrypt a file
Example#958 - Archive a file, with its Unix rights
Example#959 - Archive a file
Example#960 - Archive a file
Example#961 - Dump the stat info of an entry
Example#962 - Dump the stat info of an entry
Example#963 - Small Zlib Example
Example#964 - Working with the incremental compression and decompression API
Example#965 - gzclose example
Example#966 - gzcompress example
Example#967 - gzdeflate example
Example#968 - Creating a gzip file
Example#969 - gzeof example
Example#970 - gzfile example
Example#971 - gzgetc example
Example#972 - gzgets example
Example#973 - gzgetss example
Example#974 - gzinflate example
Example#975 - gzopen Example
Example#976 - gzpassthru example
Example#977 - gzread example
Example#978 - gzseek example
Example#979 - gzuncompress example
Example#980 - gzwrite example
Example#981 - ob_gzhandler example
Example#982 - zlib_encode example
Example#983 - A hash example
Example#984 - hash_algos example
Example#985 - hash_copy example
Example#986 - hash_equals example
Example#987 - Using hash_file
Example#988 - hash_hkdf example
Example#989 - hash_hmac example
Example#990 - hash_hmac_algos example
Example#991 - hash_hmac_file example
Example#992 - Incremental hashing example
Example#993 - hash_pbkdf2 example, basic usage
Example#994 - hash_update_stream example
Example#995 - mcrypt_create_iv Example
Example#996 - mcrypt_enc_get_algorithms_name example
Example#997 - mcrypt_enc_get_modes_name example
Example#998 - mcrypt_enc_get_supported_key_sizes example
Example#999 - mcrypt_encrypt Example
Example#1000 - mcrypt_get_block_size example
Example#1001 - mcrypt_get_cipher_name Example
Example#1002 - mcrypt_get_iv_size Example
Example#1003 - mcrypt_get_key_size Example
Example#1004 - mcrypt_list_algorithms Example
Example#1005 - mcrypt_list_modes Example
Example#1006 - mcrypt_module_open Examples
Example#1007 - Using mcrypt_module_open in encryption
Example#1008 - mcrypt_module_self_test example
Example#1009 - mdecrypt_generic Example
Example#1010 - Computes the MD5 digest and hmac and print it out as hex
Example#1011 - Traversing all hashes
Example#1012 - mhash_get_block_size Example
Example#1013 - mhash_get_hash_name Example
Example#1014 - openssl_cipher_iv_length example
Example#1015 - openssl_cipher_key_length example
Example#1016 - openssl_cms_sign example
Example#1017 - openssl_csr_export() example
Example#1018 - openssl_csr_export_to_file() example
Example#1019 - openssl_csr_get_public_key() example
Example#1020 - openssl_csr_get_subject() example
Example#1021 - Creating a self-signed certificate
Example#1022 - Creating a self-signed ECC certificate (as of PHP 7.1.0)
Example#1023 - openssl_csr_sign example - signing a CSR (how to implement your own CA)
Example#1024 - Compute a shared secret
Example#1025 - Generate a DH public/private keypair in php
Example#1026 - AES Authenticated Encryption in GCM mode example for PHP 7.1+
Example#1027 - AES Authenticated Encryption example prior to PHP 7.1
Example#1028 - openssl_error_string example
Example#1029 - openssl_get_cert_locations example
Example#1030 - openssl_get_cipher_methods example
Example#1031 - openssl_get_curve_names example
Example#1032 - openssl_get_md_methods example
Example#1033 - openssl_open example
Example#1034 - openssl_pbkdf2() example
Example#1035 - openssl_pkcs12_read example
Example#1036 - openssl_pkcs7_decrypt example
Example#1037 - openssl_pkcs7_encrypt example
Example#1038 - Get a PEM array from a P7B file
Example#1039 - openssl_pkcs7_sign example
Example#1040 - openssl_pkey_derive example
Example#1041 - Obtain the public key from a private key
Example#1042 - Generating RSA key from parameters
Example#1043 - openssl_random_pseudo_bytes example
Example#1044 - openssl_seal example
Example#1045 - openssl_sign example
Example#1046 - openssl_sign example
Example#1047 - openssl_spki_export example
Example#1048 - openssl_spki_export example from <keygen>
Example#1049 - openssl_spki_export_challenge example
Example#1050 - openssl_spki_export_challenge example from <keygen>
Example#1051 - openssl_spki_new example
Example#1052 - openssl_spki_verify example
Example#1053 - openssl_spki_verify example from <keygen>
Example#1054 - openssl_verify example
Example#1055 - openssl_verify example
Example#1056 - openssl_x509_verify example
Example#1057 - Basic password_algos usage
Example#1058 - password_hash example
Example#1059 - password_hash example setting cost manually
Example#1060 - password_hash example finding a good cost
Example#1061 - password_hash example using Argon2i
Example#1062 - Usage of password_needs_rehash
Example#1063 - password_verify example
Example#1064 - RNP clearsign example
Example#1065 - simple callback function example
Example#1066 - sodium_crypto_box_seal example
Example#1067 - sodium_crypto_box_seal_open example
Example#1068 - sodium_crypto_core_ristretto255_add example
Example#1069 - sodium_crypto_core_ristretto255_from_hash example
Example#1070 - sodium_crypto_core_ristretto255_is_valid_point example
Example#1071 - sodium_crypto_core_ristretto255_random example
Example#1072 - sodium_crypto_core_ristretto255_scalar_add example
Example#1073 - sodium_crypto_core_ristretto255_scalar_invert example
Example#1074 - sodium_crypto_core_ristretto255_scalar_negate example
Example#1075 - sodium_crypto_core_ristretto255_scalar_random example
Example#1076 - sodium_crypto_core_ristretto255_scalar_sub example
Example#1077 - sodium_crypto_core_ristretto255_sub example
Example#1078 - sodium_crypto_generichash_final example
Example#1079 - sodium_crypto_generichash_init example
Example#1080 - sodium_crypto_generichash_update example
Example#1081 - sodium_crypto_kx_keypair usage
Example#1082 - sodium_crypto_pwhash example
Example#1083 - sodium_crypto_pwhash_str example
Example#1084 - sodium_crypto_secretbox example
Example#1085 - sodium_crypto_secretbox_keygen example
Example#1086 - Comparing sodium_crypto_secretbox_keygen with random_bytes
Example#1087 - sodium_crypto_secretbox_open example
Example#1088 - sodium_crypto_secretstream_xchacha20poly1305_init_pull example
Example#1089 - sodium_crypto_secretstream_xchacha20poly1305_init_push example
Example#1090 - sodium_crypto_stream_xchacha20_xor_ic example
Example#1091 - A crypt_checksalt example
Example#1092 - A crypt_gensalt example
Example#1093 - A crypt_preferred_method example
Example#1094 - DBA example
Example#1095 - Traversing a database
Example#1096 - dba_handlers Example
Example#1097 - List Privileges for a Column
Example#1098 - List Columns of a Table
Example#1099 - DSN-less connections
Example#1100 - odbc_connection_string_quote example
Example#1101 - List available DSNs
Example#1102 - odbc_execute and odbc_prepare example
Example#1103 - odbc_fetch_into examples
Example#1104 - odbc_next_result
Example#1105 - odbc_execute and odbc_prepare example
Example#1106 - List primary Keys of a Column
Example#1107 - List Columns of a stored Procedure
Example#1108 - List stored Procedures of a Database
Example#1109 - odbc_result examples
Example#1110 - odbc_setoption examples
Example#1111 - List Statistics of a Table
Example#1112 - List Privileges of a Table
Example#1113 - List Tables in a Catalog
Example#1114 - using PDO::ATTR_DRIVER_NAME
Example#1115 - Connecting to MySQL
Example#1116 - Handling connection errors
Example#1117 - Closing a connection
Example#1118 - Persistent connections
Example#1119 - Implicit Commit Example
Example#1120 - Executing a batch in a transaction
Example#1121 - Repeated inserts using prepared statements
Example#1122 - Repeated inserts using prepared statements
Example#1123 - Fetching data using prepared statements
Example#1124 - Calling a stored procedure with an output parameter
Example#1125 - Calling a stored procedure with an input/output parameter
Example#1126 - Invalid use of placeholder
Example#1127 - Create a PDO instance and set the error mode
Example#1128 - Create a PDO instance and set the error mode from the constructor
Example#1129 - Displaying an image from a database
Example#1130 - Inserting an image into a database
Example#1131 - Inserting an image into a database: Oracle
Example#1132 - Roll back a transaction
Example#1133 - Committing a basic transaction
Example#1134 - Committing a DDL transaction
Example#1135 - Create a PDO instance via driver invocation
Example#1136 - Create a PDO instance via URI invocation
Example#1137 - Create a PDO instance using an alias
Example#1138 - Retrieving an SQLSTATE code
Example#1139 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
Example#1140 - Issuing a DELETE statement
Example#1141 - Retrieving database connection attributes
Example#1142 - A PDO::getAvailableDrivers example
Example#1143 - SQL statement template with named parameters
Example#1144 - SQL statement template with question mark parameters
Example#1145 - SQL statement template with question mark escaped
Example#1146 - SQL with no placeholders can be executed using PDO::query
Example#1147 - Quoting a normal string
Example#1148 - Quoting a dangerous string
Example#1149 - Quoting a complex string
Example#1150 - Roll back a transaction
Example#1151 - Binding result set output to PHP variables
Example#1152 - Execute a prepared statement with named placeholders
Example#1153 - Execute a prepared statement with question mark placeholders
Example#1154 - Call a stored procedure with an INOUT parameter
Example#1155 - Execute a prepared statement with named placeholders
Example#1156 - Execute a prepared statement with question mark placeholders
Example#1157 - A PDOStatement::closeCursor example
Example#1158 - Counting columns
Example#1159 - PDOStatement::debugDumpParams example with named parameters
Example#1160 - PDOStatement::debugDumpParams example with unnamed parameters
Example#1161 - Retrieving an SQLSTATE code
Example#1162 - Displaying errorInfo() fields for a PDO_ODBC connection to a DB2 database
Example#1163 - Execute a prepared statement with a bound variable and value
Example#1164 - Execute a prepared statement with an array of named values
Example#1165 - Execute a prepared statement with an array of positional values
Example#1166 - Execute a prepared statement with variables bound to positional placeholders
Example#1167 - Execute a prepared statement using array for IN clause
Example#1168 - Fetching rows using different fetch styles
Example#1169 - Fetching rows with a scrollable cursor
Example#1170 - Construction order
Example#1171 - Fetch all remaining rows in a result set
Example#1172 - Fetching all values of a single column from a result set
Example#1173 - Grouping all values by a single column
Example#1174 - Instantiating a class for each result
Example#1175 - Calling a function for each result
Example#1176 - Return first column of the next row
Example#1177 - Retrieving column metadata
Example#1178 - Fetching multiple rowsets returned from a stored procedure
Example#1179 - Return the number of deleted rows
Example#1180 - Counting rows returned by a SELECT statement
Example#1181 - Setting the fetch mode
Example#1182 - Insert LOBs in CUBRID PDO
Example#1183 - Fetch LOBs in CUBRID PDO
Example#1184 - Insert set in CUBRID PDO with default data type.
Example#1185 - Specify data type when insert set in CUBRID PDO
Example#1186 - PDO_CUBRID DSN examples
Example#1187 - A PDO::cubrid_schema example
Example#1188 - PDO_DBLIB DSN examples
Example#1189 - PDO_FIREBIRD DSN example with path
Example#1190 - PDO_FIREBIRD DSN example with port and path
Example#1191 - PDO_FIREBIRD DSN example with localhost and path to employee.fdb on Debian system
Example#1192 - PDO_FIREBIRD DSN to connect to a dialect 1 database
Example#1193 - PDO_IBM DSN example using db2cli.ini
Example#1194 - PDO_IBM DSN example using a connection string
Example#1195 - PDO_INFORMIX DSN example using odbc.ini
Example#1196 - PDO_INFORMIX DSN example using a connection string
Example#1197 - PDO_MYSQL DSN examples
Example#1198 - Setting MySQL unbuffered mode
Example#1199 - Pdo\Mysql::getWarningCount example
Example#1200 - PDO_SQLSRV DSN examples
Example#1201 - PDO_OCI DSN examples
Example#1202 - PDO_ODBC DSN example (ODBC driver manager)
Example#1203 - PDO_ODBC DSN example (IBM DB2 uncataloged connection)
Example#1204 - PDO_ODBC DSN example (Microsoft Access uncataloged connection)
Example#1205 - PDO_PGSQL DSN examples
Example#1206 - Pdo\Pgsql::escapeIdentifier example
Example#1207 - Pdo\Pgsql::lobCreate example
Example#1208 - Pdo\Pgsql::lobOpen example
Example#1209 - Pdo\Pgsql::lobUnlink example
Example#1210 - Pdo\Pgsql::setNoticeCallback example
Example#1211 - PDO_SQLITE DSN examples
Example#1212 - Pdo\Sqlite::createAggregate example
Example#1213 - Pdo\Sqlite::createCollation example
Example#1214 - Pdo\Sqlite::createFunction example
Example#1215 - Pdo\Sqlite::loadExtension example
Example#1216 - Pdo\Sqlite::openBlob example
Example#1217 - Example of Data Retrieval
Example#1218 - Example of Data Insertion
Example#1219 - cubrid_bind example
Example#1220 - cubrid_bind BLOB/CLOB example
Example#1221 - cubrid_bind BLOB/CLOB example
Example#1222 - cubrid_close_prepare example
Example#1223 - cubrid_close_request example
Example#1224 - cubrid_col_get example
Example#1225 - cubrid_col_size example
Example#1226 - cubrid_column_names example
Example#1227 - cubrid_column_types example
Example#1228 - cubrid_commit example
Example#1229 - cubrid_connect example
Example#1230 - cubrid_connect_with_url url without properties example
Example#1231 - cubrid_connect_with_url url with properties example
Example#1232 - cubrid_current_oid example
Example#1233 - cubrid_disconnect example
Example#1234 - cubrid_drop example
Example#1235 - cubrid_error_code example
Example#1236 - cubrid_error_code_facility example
Example#1237 - cubrid_error_msg example
Example#1238 - cubrid_execute example
Example#1239 - cubrid_fetch example
Example#1240 - cubrid_free_result example
Example#1241 - cubrid_get example
Example#1242 - cubrid_get_charset example
Example#1243 - cubrid_get_class_name example
Example#1244 - cubrid_get_client_info example
Example#1245 - cubrid_get_db_parameter example
Example#1246 - cubrid_get_query_timeout example
Example#1247 - cubrid_get_server_info example
Example#1248 - cubrid_insert_id example
Example#1249 - cubrid_is_instance example
Example#1250 - cubrid_lob_close example
Example#1251 - cubrid_lob_export example
Example#1252 - cubrid_lob_get example
Example#1253 - cubrid_lob_send example
Example#1254 - cubrid_lob_size example
Example#1255 - cubrid_lob2_bind example
Example#1256 - cubrid_lob2_export example
Example#1257 - cubrid_lob2_export example
Example#1258 - cubrid_lob2_read example 1
Example#1259 - cubrid_lob2_read example 2
Example#1260 - cubrid_lob2_seek example
Example#1261 - cubrid_lob2_seek64 example
Example#1262 - cubrid_lob2_write example 1
Example#1263 - cubrid_lob2_write example 2
Example#1264 - cubrid_lock_read example
Example#1265 - cubrid_lock_write example
Example#1266 - cubrid_move_cursor example
Example#1267 - cubrid_next_result example
Example#1268 - cubrid_num_cols example
Example#1269 - cubrid_num_rows example
Example#1270 - cubrid_connect example
Example#1271 - cubrid_pconnect_with_url url without properties example
Example#1272 - cubrid_pconnect_with_url url with properties example
Example#1273 - cubrid_prepare example
Example#1274 - cubrid_put example
Example#1275 - cubrid_rollback example
Example#1276 - cubrid_schema example
Example#1277 - cubrid_seq_drop example
Example#1278 - cubrid_seq_insert example
Example#1279 - cubrid_seq_put example
Example#1280 - cubrid_set_add example
Example#1281 - cubrid_get_db_parameter example
Example#1282 - cubrid_set_drop example
Example#1283 - cubrid_version example
Example#1284 - cubrid_affected_rows example
Example#1285 - cubrid_client_encoding example
Example#1286 - cubrid_close example
Example#1287 - cubrid_data_seek example
Example#1288 - cubrid_db_name example
Example#1289 - cubrid_errno example
Example#1290 - cubrid_error example
Example#1291 - cubrid_fetch_array example
Example#1292 - cubrid_fetch_assoc example
Example#1293 - cubrid_fetch_field example
Example#1294 - cubrid_fetch_lengths example
Example#1295 - cubrid_fetch_object example
Example#1296 - cubrid_fetch_row example
Example#1297 - cubrid_field_flags example
Example#1298 - cubrid_field_len example
Example#1299 - cubrid_field_name example
Example#1300 - cubrid_field_seek example
Example#1301 - cubrid_field_table example
Example#1302 - cubrid_field_type example
Example#1303 - cubrid_list_dbs example
Example#1304 - cubrid_num_fields example
Example#1305 - cubrid_ping example
Example#1306 - Invalid Query
Example#1307 - Valid Query
Example#1308 - cubrid_real_escape_string example
Example#1309 - cubrid_result example
Example#1310 - cubrid_unbuffered_query example
Example#1311 - cubrid_load_from_glo example
Example#1312 - cubrid_new_glo example
Example#1313 - cubrid_save_to_glo example
Example#1314 - cubrid_send_glo example
Example#1315 - Inserting a record in a dBase database
Example#1316 - Closing a dBase database file
Example#1317 - Creating a dBase database file
Example#1318 - Showing header information for a dBase database file
Example#1319 - Listing all the registered members in the database
Example#1320 - dbase_numfields Example
Example#1321 - Looping over all the records of the database
Example#1322 - Opening a dBase database file
Example#1323 - Emptying a dBase database
Example#1324 - Updating a record in the database
Example#1325 - ibase_backup example
Example#1326 - ibase_backup example with arguments
Example#1327 - ibase_blob_get example
Example#1328 - ibase_blob_import example
Example#1329 - ibase_connect example
Example#1330 - ibase_execute example
Example#1331 - ibase_fetch_object example
Example#1332 - ibase_field_info example
Example#1333 - ibase_name_result example
Example#1334 - ibase_num_fields example
Example#1335 - ibase_query example
Example#1336 - ibase_restore example
Example#1337 - ibase_restore example with arguments
Example#1338 - ibase_service_attach example
Example#1339 - ibase_service_attach example
Example#1340 - ibase_service_attach example using hostname/port syntax
Example#1341 - ibase_service_detach example
Example#1342 - ibase_set_event_handler example
Example#1343 - Retrieving the AUTOCOMMIT value for a connection
Example#1344 - Setting the AUTOCOMMIT value for a connection
Example#1345 - Binding PHP variables to a prepared statement
Example#1346 - Calling stored procedures with IN and OUT parameters
Example#1347 - Inserting a binary large object (BLOB) directly from a file
Example#1348 - A db2_client_info example
Example#1349 - Closing a connection
Example#1350 - Retrieving an SQLSTATE value for a failed connection attempt
Example#1351 - Retrieving the error message returned by a failed connection attempt
Example#1352 - Creating a cataloged connection
Example#1353 - Creating an uncataloged connection
Example#1354 - Creating a connection with autocommit off by default
Example#1355 - i5/OS best performance
Example#1356 - Using trusted context
Example#1357 - A db2_escape_string example
Example#1358 - Creating a table with db2_exec
Example#1359 - Executing a SELECT statement with a scrollable cursor
Example#1360 - Returning XML data as an SQL ResultSet
Example#1361 - Performing a "JOIN" with XML data
Example#1362 - Returning SQL data as part of a larger XML document
Example#1363 - Preparing and executing an SQL statement with parameter markers
Example#1364 - Calling a stored procedure with an OUT parameter
Example#1365 - Returning XML data as an SQL ResultSet
Example#1366 - Performing a "JOIN" with XML data
Example#1367 - Returning SQL data as part of a larger XML document
Example#1368 - Iterating through a forward-only cursor
Example#1369 - Retrieving specific rows with db2_fetch_array from a scrollable cursor
Example#1370 - Iterating through a forward-only cursor
Example#1371 - Retrieving specific rows with db2_fetch_assoc from a scrollable cursor
Example#1372 - Iterating through a forward-only cursor
Example#1373 - Retrieving specific rows with db2_fetch_both from a scrollable cursor
Example#1374 - A db2_fetch_object example
Example#1375 - Iterating through a result set
Example#1376 - i5/OS recommended alternatives to db2_fetch_row/db2_result
Example#1377 - Setting and retrieving parameters through a connection resource
Example#1378 - A db2_last_insert_id example
Example#1379 - Iterating through different types of data
Example#1380 - Calling a stored procedure that returns multiple result sets
Example#1381 - Retrieving the number of fields in a result set
Example#1382 - Closing a persistent connection
Example#1383 - A db2_pconnect example
Example#1384 - Using trusted context
Example#1385 - Preparing and executing an SQL statement with parameter markers
Example#1386 - A db2_result example
Example#1387 - Rolling back a DELETE statement
Example#1388 - A db2_server_info example
Example#1389 - Setting one parameter with a connection resource
Example#1390 - Setting multiple parameters with a connection resource
Example#1391 - Setting multiple parameters with an invalid key
Example#1392 - Setting multiple parameters with an invalid value
Example#1393 - Setting multiple parameters with a connection resource and the wrong type
Example#1394 - Setting multiple parameters with the wrong resource
Example#1395 - Putting it all together
Example#1396 - i5/OS cursors are read-only
Example#1397 - MongoDB\Driver\Manager::__construct basic example
Example#1398 - MongoDB\Driver\Manager::__construct basic examples
Example#1399 - MongoDB\Driver\Manager::executeBulkWrite example
Example#1400 - Mixed write operations
Example#1401 - Ordered write operations causing an error
Example#1402 - MongoDB\Driver\Manager::executeCommand with a command returning a single result document
Example#1403 - MongoDB\Driver\Manager::executeCommand with a command returning a cursor
Example#1404 - Limiting execution time for a command
Example#1405 - MongoDB\Driver\Manager::executeQuery example
Example#1406 - Limiting execution time for a query
Example#1407 - MongoDB\Driver\Manager::getReadConcern example
Example#1408 - MongoDB\Driver\Manager::getReadPreference example
Example#1409 - MongoDB\Driver\Manager::getServers example
Example#1410 - MongoDB\Driver\Manager::getWriteConcern example
Example#1411 - Composing MongoDB\Driver\Command to provide a helper to create collections
Example#1412 - MongoDB\Driver\Command::__construct example
Example#1413 - MongoDB\Driver\Command::__construct example
Example#1414 - MongoDB\Driver\Query::__construct example
Example#1415 - Mixed write operations are grouped by type
Example#1416 - Ordered write operations causing an error
Example#1417 - MongoDB\Driver\BulkWrite::__construct example
Example#1418 - MongoDB\Driver\BulkWrite::count example
Example#1419 - MongoDB\Driver\BulkWrite::delete example
Example#1420 - MongoDB\Driver\BulkWrite::insert example
Example#1421 - MongoDB\Driver\BulkWrite::update example
Example#1422 - Mixed write operations
Example#1423 - Ordered write operations causing an error
Example#1424 - MongoDB\Driver\BulkWriteCommand::__construct example
Example#1425 - MongoDB\Driver\BulkWriteCommand::count example
Example#1426 - MongoDB\Driver\BulkWriteCommand::deleteMany example
Example#1427 - MongoDB\Driver\BulkWriteCommand::deleteOne example
Example#1428 - MongoDB\Driver\BulkWriteCommand::insertOne example
Example#1429 - MongoDB\Driver\BulkWriteCommand::replaceOne example
Example#1430 - MongoDB\Driver\BulkWriteCommand::updateMany example
Example#1431 - MongoDB\Driver\BulkWriteCommand::updateOne example
Example#1432 - Declare an API version on a manager
Example#1433 - Declare a strict API version on a manager
Example#1434 - MongoDB\Driver\WriteConcern::bsonSerialize with majority write concern
Example#1435 - MongoDB\Driver\WriteConcern::bsonSerialize with wtimeout and journal
Example#1436 - MongoDB\Driver\WriteConcern::__construct example
Example#1437 - MongoDB\Driver\WriteConcern::getJournal example
Example#1438 - MongoDB\Driver\WriteConcern::getW example
Example#1439 - MongoDB\Driver\WriteConcern::getWtimeout example
Example#1440 - MongoDB\Driver\WriteConcern::isDefault example
Example#1441 - MongoDB\Driver\ReadPreference::bsonSerialize with primary read preference
Example#1442 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and tag sets
Example#1443 - MongoDB\Driver\ReadPreference::bsonSerialize with secondary read preference and max staleness
Example#1444 - MongoDB\Driver\ReadPreference::__construct example
Example#1445 - MongoDB\Driver\ReadPreference::getMaxStalenessSeconds example
Example#1446 - MongoDB\Driver\ReadPreference::getMode example
Example#1447 - MongoDB\Driver\ReadPreference::getModeString example
Example#1448 - MongoDB\Driver\ReadPreference::getTagSets example
Example#1449 - MongoDB\Driver\ReadConcern::bsonSerialize with empty read concern
Example#1450 - MongoDB\Driver\ReadConcern::bsonSerialize with local read concern
Example#1451 - MongoDB\Driver\ReadConcern::__construct example
Example#1452 - MongoDB\Driver\ReadConcern::getLevel example
Example#1453 - MongoDB\Driver\ReadConcern::isDefault example
Example#1454 - Reading a result set
Example#1455 - Reading a result set for a tailable cursor
Example#1456 - MongoDB\Driver\Cursor::getId example
Example#1457 - MongoDB\Driver\Cursor::getServer example
Example#1458 - MongoDB\Driver\Cursor::isDead example
Example#1459 - MongoDB\Driver\Cursor::setTypeMap example
Example#1460 - MongoDB\Driver\Cursor::toArray example
Example#1461 - MongoDB\Driver\CursorId::__toString example
Example#1462 - MongoDB\Driver\Server::getHost example
Example#1463 - MongoDB\Driver\Server::getInfo example
Example#1464 - MongoDB\Driver\Server::getLatency example
Example#1465 - MongoDB\Driver\Server::getPort example
Example#1466 - MongoDB\Driver\WriteConcernError::getCode example
Example#1467 - MongoDB\Driver\WriteConcernError::getInfo example
Example#1468 - MongoDB\Driver\WriteConcernError::getMessage example
Example#1469 - MongoDB\Driver\WriteError::getCode example
Example#1470 - MongoDB\Driver\WriteError::getIndex example
Example#1471 - MongoDB\Driver\WriteError::getMessage example
Example#1472 - MongoDB\Driver\WriteResult::getDeletedCount example
Example#1473 - MongoDB\Driver\WriteResult::getInsertedCount example
Example#1474 - MongoDB\Driver\WriteResult::getMatchedCount example
Example#1475 - MongoDB\Driver\WriteResult::getModifiedCount example
Example#1476 - MongoDB\Driver\WriteResult::getServer example
Example#1477 - MongoDB\Driver\WriteResult::getUpsertedCount example
Example#1478 - MongoDB\Driver\WriteResult::getUpsertedIds example
Example#1479 - MongoDB\Driver\WriteResult::getWriteConcernError example
Example#1480 - MongoDB\Driver\WriteResult::getWriteErrors with a single error
Example#1481 - MongoDB\Driver\WriteResult::getWriteErrors with multiple errors
Example#1482 - MongoDB\Driver\WriteResult::isAcknowledged with acknowledged write concern
Example#1483 - MongoDB\Driver\WriteResult::isAcknowledged with unacknowledged write concern
Example#1484 - MongoDB\Driver\BulkWriteCommandResult::getDeletedCount example
Example#1485 - MongoDB\Driver\BulkWriteCommandResult::getDeleteResults example
Example#1486 - MongoDB\Driver\BulkWriteCommandResult::getInsertedCount example
Example#1487 - MongoDB\Driver\BulkWriteCommandResult::getInsertResults example
Example#1488 - MongoDB\Driver\BulkWriteCommandResult::getMatchedCount example
Example#1489 - MongoDB\Driver\BulkWriteCommandResult::getModifiedCount example
Example#1490 - MongoDB\Driver\BulkWriteCommandResult::getUpdateResults example
Example#1491 - MongoDB\Driver\BulkWriteCommandResult::getUpsertedCount example
Example#1492 - MongoDB\Driver\BulkWriteCommandResult::isAcknowledged with acknowledged write concern
Example#1493 - MongoDB\Driver\BulkWriteCommandResult::isAcknowledged with unacknowledged write concern
Example#1494 - MongoDB\BSON\fromJSON example
Example#1495 - MongoDB\BSON\fromPHP example
Example#1496 - MongoDB\BSON\toCanonicalExtendedJSON example
Example#1497 - MongoDB\BSON\toJSON example
Example#1498 - MongoDB\BSON\toPHP example
Example#1499 - MongoDB\BSON\toRelaxedExtendedJSON example
Example#1500 - MongoDB\BSON\Document::toCanonicalExtendedJSON example
Example#1501 - MongoDB\BSON\Document::toRelaxedExtendedJSON example
Example#1502 - MongoDB\BSON\PackedArray::fromJSON example
Example#1503 - MongoDB\BSON\PackedArray::toCanonicalExtendedJSON example
Example#1504 - MongoDB\BSON\PackedArray::toRelaxedExtendedJSON example
Example#1505 - MongoDB\BSON\Binary::__construct example
Example#1506 - MongoDB\BSON\Binary::getData example
Example#1507 - MongoDB\BSON\Binary::getType example
Example#1508 - MongoDB\BSON\Binary::__toString example
Example#1509 - MongoDB\BSON\Decimal128::__construct example
Example#1510 - MongoDB\BSON\Decimal128::__toString example
Example#1511 - MongoDB\BSON\Javascript::__construct example
Example#1512 - MongoDB\BSON\Javascript::getCode example
Example#1513 - MongoDB\BSON\Javascript::getScope example
Example#1514 - MongoDB\BSON\Javascript::__toString example
Example#1515 - MongoDB\BSON\MaxKey::__construct example
Example#1516 - MongoDB\BSON\MinKey::__construct example
Example#1517 - MongoDB\BSON\ObjectId::__construct example
Example#1518 - MongoDB\BSON\ObjectId::getTimestamp example
Example#1519 - MongoDB\BSON\ObjectId::__toString example
Example#1520 - MongoDB\BSON\Regex::__construct example
Example#1521 - MongoDB\BSON\Regex::getFlags example
Example#1522 - MongoDB\BSON\Regex::getPattern example
Example#1523 - MongoDB\BSON\Regex::__toString example
Example#1524 - MongoDB\BSON\Timestamp::__construct example
Example#1525 - MongoDB\BSON\Timestamp::__toString example
Example#1526 - MongoDB\BSON\UTCDateTime::__construct example
Example#1527 - MongoDB\BSON\UTCDatetime::toDateTime example
Example#1528 - MongoDB\BSON\UTCDatetime::toDateTimeImmutable example
Example#1529 - MongoDB\BSON\UTCDateTime::__toString example
Example#1530 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for root document
Example#1531 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for root document
Example#1532 - MongoDB\BSON\Serializable::bsonSerialize returning an associative array for document field
Example#1533 - MongoDB\BSON\Serializable::bsonSerialize returning a sequential array for document field
Example#1534 - MongoDB\BSON\Unserializable::bsonUnserialize example
Example#1535 - MongoDB\BSON\Int64::__toString example
Example#1536 - MongoDB\Driver\Exception\BulkWriteException::getWriteResult example
Example#1537 - MongoDB\Driver\Exception\BulkWriteCommandException::getErrorReply example
Example#1538 - Partial result if at least one write is successful
Example#1539 - No partial result if no writes are successful
Example#1540 - MongoDB\Driver\Exception\BulkWriteCommandException::getWriteConcernErrors example
Example#1541 - MongoDB\Driver\Exception\BulkWriteCommandException::getWriteErrors example
Example#1542 - MongoDB\Driver\Exception\WriteException::getWriteResult example
Example#1543 - Comparing the MySQL APIs
Example#1544 - Comparing prepared statements
Example#1545 - Configure commands for using mysqlnd or libmysqlclient
Example#1546 - Unbuffered query example: mysqli
Example#1547 - Unbuffered query example: pdo_mysql
Example#1548 - Problems with setting the character set with SQL
Example#1549 - Setting the character set example: mysqli
Example#1550 - Setting the character set example: pdo_mysql
Example#1551 - Easy migration from the old mysql extension
Example#1552 - Object-oriented and procedural interface
Example#1553 - Bad coding style
Example#1554 - Special meaning of localhost
Example#1555 - Setting defaults
Example#1556 - Executing queries
Example#1557 - Navigation through buffered results
Example#1558 - Navigation through unbuffered results
Example#1559 - Text protocol returns strings by default
Example#1560 - Native data types with mysqlnd and connection option
Example#1561 - Prepared statement
Example#1562 - INSERT prepared once, executed multiple times
Example#1563 - Less round trips using multi-INSERT SQL
Example#1564 - Native datatypes
Example#1565 - Output variable binding
Example#1566 - Using mysqli_result to fetch results
Example#1567 - Buffered result set for flexible read out
Example#1568 - Calling a stored procedure
Example#1569 - Using session variables
Example#1570 - Fetching results from stored procedures
Example#1571 - Stored Procedures and Prepared Statements
Example#1572 - Stored Procedures and Prepared Statements using bind API
Example#1573 - Multiple Statements
Example#1574 - SQL Injection
Example#1575 - Setting autocommit mode with SQL and through the API
Example#1576 - Commit and rollback
Example#1577 - Accessing result set meta data
Example#1578 - Prepared statements metadata
Example#1579 - $mysqli->affected_rows example
Example#1580 - mysqli::autocommit example
Example#1581 - mysqli::begin_transaction example
Example#1582 - Resetting the connection session
Example#1583 - If database is null the connection is opened without selecting any default database
Example#1584 - mysqli::character_set_name example
Example#1585 - mysqli::close example
Example#1586 - $mysqli->connect_errno example
Example#1587 - $mysqli->connect_error example
Example#1588 - mysqli::__construct example
Example#1589 - Extending mysqli class
Example#1590 - Manual error handling
Example#1591 - Generating a Trace File
Example#1592 - $mysqli->errno example
Example#1593 - $mysqli->error example
Example#1594 - $mysqli->error_list example
Example#1595 - mysqli::execute_query example
Example#1596 - $mysqli->field_count example
Example#1597 - mysqli::get_charset example
Example#1598 - mysqli_get_client_info
Example#1599 - mysqli_get_client_version
Example#1600 - A mysqli_get_connection_stats example
Example#1601 - $mysqli->host_info example
Example#1602 - $mysqli->protocol_version example
Example#1603 - $mysqli->server_info example
Example#1604 - $mysqli->server_version example
Example#1605 - Traversing the linked list to fetch all warnings
Example#1606 - $mysqli->info example
Example#1607 - $mysqli->insert_id example
Example#1608 - mysqli::kill example
Example#1609 - mysqli::multi_query example
Example#1610 - mysqli::ping example
Example#1611 - A mysqli_poll example
Example#1612 - mysqli::prepare example
Example#1613 - mysqli::query example
Example#1614 - mysqli::real_connect example
Example#1615 - mysqli::real_escape_string example
Example#1616 - mysqli::select_db example
Example#1617 - mysqli::set_charset example
Example#1618 - $mysqli->sqlstate example
Example#1619 - mysqli::stat example
Example#1620 - $mysqli->thread_id example
Example#1621 - mysqli::use_result example
Example#1622 - $mysqli->warning_count example
Example#1623 - mysqli_stmt_affected_rows example
Example#1624 - mysqli_stmt::bind_param example
Example#1625 - Using ... to provide arguments
Example#1626 - Object-oriented style
Example#1627 - Procedural style
Example#1628 - Object-oriented style
Example#1629 - Procedural style
Example#1630 - Object-oriented style
Example#1631 - Procedural style
Example#1632 - Object-oriented style
Example#1633 - Procedural style
Example#1634 - Object-oriented style
Example#1635 - Procedural style
Example#1636 - Execute a prepared statement with bound variables
Example#1637 - Execute a prepared statement with an array of values
Example#1638 - Object-oriented style
Example#1639 - Procedural style
Example#1640 - Object-oriented style
Example#1641 - Procedural style
Example#1642 - Object-oriented style
Example#1643 - Procedural style
Example#1644 - Object-oriented style
Example#1645 - Procedural style
Example#1646 - Object-oriented style
Example#1647 - Procedural style
Example#1648 - mysqli_stmt::prepare example
Example#1649 - Object-oriented style
Example#1650 - Procedural style
Example#1651 - Object-oriented style
Example#1652 - Object-oriented style
Example#1653 - Procedural style
Example#1654 - Object-oriented style
Example#1655 - Procedural style
Example#1656 - Creation of a mysqli_result object
Example#1657 - Object-oriented style
Example#1658 - Procedural style
Example#1659 - mysqli::data_seek example
Example#1660 - Adjusting the result pointer when iterating
Example#1661 - mysqli_result::fetch_all example
Example#1662 - mysqli_result::fetch_array example
Example#1663 - mysqli_result::fetch_assoc example
Example#1664 - Comparison of mysqli_result iterator and mysqli_result::fetch_assoc usage
Example#1665 - mysqli_result::fetch_column example
Example#1666 - Object-oriented style
Example#1667 - Procedural style
Example#1668 - Object-oriented style
Example#1669 - Procedural style
Example#1670 - Object-oriented style
Example#1671 - Procedural style
Example#1672 - mysqli_result::fetch_object example
Example#1673 - mysqli_result::fetch_row example
Example#1674 - Object-oriented style
Example#1675 - Procedural style
Example#1676 - Object-oriented style
Example#1677 - Procedural style
Example#1678 - Object-oriented style
Example#1679 - Procedural style
Example#1680 - Object-oriented style
Example#1681 - Procedural style
Example#1682 - Object-oriented style
Example#1683 - Procedural style
Example#1684 - Error reporting except bad index errors
Example#1685 - A mysqli_get_client_stats example
Example#1686 - Connecting to a MySQL Server
Example#1687 - Creating a Schema and Collection on the MySQL Server
Example#1688 - Storing and Retrieving Data
Example#1689 - Fetching and Iterating Multiple Documents
Example#1690 - mysql_xdevapi\Expression example
Example#1691 - URI examples
Example#1692 - mysql_xdevapi\getSession example
Example#1693 - mysql_xdevapi\RowResult::getWarnings example
Example#1694 - mysql_xdevapi\RowResult::getWarningsCount example
Example#1695 - mysql_xdevapi\Client::__construct example
Example#1696 - mysql_xdevapi\Collection::add example
Example#1697 - mysql_xdevapi\Collection::addOrReplaceOne example
Example#1698 - mysql_xdevapi\Collection::getOne example
Example#1699 - mysql_xdevapi\Collection::count example
Example#1700 - mysql_xdevapi\Collection::createIndex example
Example#1701 - mysql_xdevapi\Collection::dropIndex example
Example#1702 - mysql_xdevapi\Collection::existsInDatabase example
Example#1703 - mysql_xdevapi\Collection::find example
Example#1704 - mysql_xdevapi\Collection::getName example
Example#1705 - mysql_xdevapi\Collection::getOne example
Example#1706 - mysql_xdevapi\Collection::getSchema example
Example#1707 - mysql_xdevapi\Collection::getSession example
Example#1708 - mysql_xdevapi\Collection::modify example
Example#1709 - mysql_xdevapi\Collection::remove example
Example#1710 - mysql_xdevapi\Collection::removeOne example
Example#1711 - mysql_xdevapi\Collection::replaceOne example
Example#1712 - mysql_xdevapi\CollectionAdd::__construct example
Example#1713 - mysql_xdevapi\CollectionAdd::execute example
Example#1714 - mysql_xdevapi\CollectionFind::bind example
Example#1715 - CollectionFind example
Example#1716 - CollectionFind example
Example#1717 - mysql_xdevapi\CollectionFind::fields example
Example#1718 - mysql_xdevapi\CollectionFind::groupBy example
Example#1719 - mysql_xdevapi\CollectionFind::having example
Example#1720 - mysql_xdevapi\CollectionFind::limit example
Example#1721 - mysql_xdevapi\CollectionFind::lockExclusive example
Example#1722 - mysql_xdevapi\CollectionFind::lockShared example
Example#1723 - mysql_xdevapi\CollectionFind::offset example
Example#1724 - mysql_xdevapi\CollectionFind::sort example
Example#1725 - mysql_xdevapi\CollectionModify::arrayAppend example
Example#1726 - mysql_xdevapi\CollectionModify::arrayInsert example
Example#1727 - mysql_xdevapi\CollectionModify::bind example
Example#1728 - mysql_xdevapi\CollectionModify::__construct example
Example#1729 - mysql_xdevapi\CollectionModify::execute example
Example#1730 - mysql_xdevapi\CollectionModify::limit example
Example#1731 - mysql_xdevapi\CollectionModify::patch example
Example#1732 - mysql_xdevapi\CollectionModify::replace example
Example#1733 - mysql_xdevapi\CollectionModify::set example
Example#1734 - mysql_xdevapi\CollectionModify::skip example
Example#1735 - mysql_xdevapi\CollectionModify::sort example
Example#1736 - mysql_xdevapi\CollectionModify::unset example
Example#1737 - mysql_xdevapi\CollectionRemove::bind example
Example#1738 - mysql_xdevapi\Collection::remove example
Example#1739 - mysql_xdevapi\CollectionRemove::execute example
Example#1740 - mysql_xdevapi\CollectionRemove::limit example
Example#1741 - mysql_xdevapi\CollectionRemove::sort example
Example#1742 - mysql_xdevapi\ColumnResult::__construct example
Example#1743 - mysql_xdevapi\ColumnResult::getCharacterSetName example
Example#1744 - mysql_xdevapi\ColumnResult::getCollationName example
Example#1745 - mysql_xdevapi\ColumnResult::getColumnLabel example
Example#1746 - mysql_xdevapi\ColumnResult::getColumnName example
Example#1747 - mysql_xdevapi\ColumnResult::getFractionalDigits example
Example#1748 - mysql_xdevapi\ColumnResult::getLength example
Example#1749 - mysql_xdevapi\ColumnResult::getSchemaName example
Example#1750 - mysql_xdevapi\ColumnResult::getTableLabel example
Example#1751 - mysql_xdevapi\ColumnResult::getTableName example
Example#1752 - mysql_xdevapi\ColumnResult::getType example
Example#1753 - mysql_xdevapi\ColumnResult::isNumberSigned example
Example#1754 - mysql_xdevapi\ColumnResult::isPadded example
Example#1755 - mysql_xdevapi\CrudOperationBindable::bind example
Example#1756 - mysql_xdevapi\CrudOperationLimitable::limit example
Example#1757 - mysql_xdevapi\CrudOperationSkippable::skip example
Example#1758 - mysql_xdevapi\CrudOperationSortable::sort example
Example#1759 - mysql_xdevapi\DatabaseObject::existsInDatabase example
Example#1760 - mysql_xdevapi\DatabaseObject::getName example
Example#1761 - mysql_xdevapi\DatabaseObject::getSession example
Example#1762 - A DocResult example
Example#1763 - mysql_xdevapi\DocResult::fetchAll example
Example#1764 - mysql_xdevapi\DocResult::fetchOne example
Example#1765 - mysql_xdevapi\DocResult::getWarnings example
Example#1766 - mysql_xdevapi\DocResult::getWarningsCount example
Example#1767 - execute() examples
Example#1768 - mysql_xdevapi\ExecutionStatus::__construct example
Example#1769 - mysql_xdevapi\Expression::__construct example
Example#1770 - mysql_xdevapi\Result::__construct example
Example#1771 - mysql_xdevapi\Result::getAffectedItemsCount example
Example#1772 - mysql_xdevapi\Result::getAutoIncrementValue example
Example#1773 - mysql_xdevapi\Result::getGeneratedIds example
Example#1774 - mysql_xdevapi\RowResult::getWarnings example
Example#1775 - mysql_xdevapi\RowResult::getWarningsCount example
Example#1776 - mysql_xdevapi\RowResult::__construct example
Example#1777 - mysql_xdevapi\RowResult::fetchAll example
Example#1778 - mysql_xdevapi\RowResult::fetchOne example
Example#1779 - mysql_xdevapi\RowResult::getColumnsCount example
Example#1780 - mysql_xdevapi\RowResult::getColumnNames example
Example#1781 - mysql_xdevapi\RowResult::getColumns example
Example#1782 - mysql_xdevapi\RowResult::getWarnings example
Example#1783 - mysql_xdevapi\RowResult::getWarningsCount example
Example#1784 - mysql_xdevapi\Schema::__construct example
Example#1785 - mysql_xdevapi\Schema::createCollection example
Example#1786 - mysql_xdevapi\Schema::createCollection example
Example#1787 - mysql_xdevapi\Schema::dropCollection example
Example#1788 - mysql_xdevapi\Schema::existsInDatabase example
Example#1789 - mysql_xdevapi\Schema::getCollection example
Example#1790 - mysql_xdevapi\Schema::getCollectionAsTable example
Example#1791 - mysql_xdevapi\Schema::getCollections example
Example#1792 - mysql_xdevapi\Schema::getName example
Example#1793 - mysql_xdevapi\Schema::getSession example
Example#1794 - mysql_xdevapi\Schema::getTable example
Example#1795 - mysql_xdevapi\Schema::getTables example
Example#1796 - mysql_xdevapi\Session::getSchema example
Example#1797 - mysql_xdevapi\Session::close example
Example#1798 - mysql_xdevapi\Session::commit example
Example#1799 - mysql_xdevapi\Session::__construct example
Example#1800 - mysql_xdevapi\Session::createSchema example
Example#1801 - mysql_xdevapi\Session::dropSchema example
Example#1802 - mysql_xdevapi\Session::generateUuid example
Example#1803 - mysql_xdevapi\Session::getSchema example
Example#1804 - mysql_xdevapi\Session::getSchema example
Example#1805 - mysql_xdevapi\Session::getSchemas example
Example#1806 - mysql_xdevapi\Session::getServerVersion example
Example#1807 - mysql_xdevapi\Session::listClients example
Example#1808 - mysql_xdevapi\Session::quoteName example
Example#1809 - mysql_xdevapi\Session::releaseSavepoint example
Example#1810 - mysql_xdevapi\Session::rollback example
Example#1811 - mysql_xdevapi\Session::rollbackTo example
Example#1812 - mysql_xdevapi\Session::setSavepoint example
Example#1813 - mysql_xdevapi\Session::sql example
Example#1814 - mysql_xdevapi\Session::startTransaction example
Example#1815 - mysql_xdevapi\SqlStatement::bind example
Example#1816 - mysql_xdevapi\SqlStatement::__construct example
Example#1817 - mysql_xdevapi\SqlStatement::execute example
Example#1818 - mysql_xdevapi\SqlStatement::getNextResult example
Example#1819 - mysql_xdevapi\SqlStatement::getResult example
Example#1820 - mysql_xdevapi\SqlStatement::hasMoreResults example
Example#1821 - mysql_xdevapi\SqlStatementResult::__construct example
Example#1822 - mysql_xdevapi\SqlStatementResult::fetchAll example
Example#1823 - mysql_xdevapi\SqlStatementResult::fetchOne example
Example#1824 - mysql_xdevapi\SqlStatementResult::getAffectedItemsCount example
Example#1825 - mysql_xdevapi\SqlStatementResult::getColumnsCount example
Example#1826 - mysql_xdevapi\SqlStatementResult::getColumnNames example
Example#1827 - mysql_xdevapi\SqlStatementResult::getColumns example
Example#1828 - mysql_xdevapi\SqlStatementResult::getGeneratedIds example
Example#1829 - mysql_xdevapi\SqlStatementResult::getLastInsertId example
Example#1830 - mysql_xdevapi\SqlStatementResult::getWarnings example
Example#1831 - mysql_xdevapi\SqlStatementResult::getWarningsCount example
Example#1832 - mysql_xdevapi\SqlStatementResult::hasData example
Example#1833 - mysql_xdevapi\SqlStatementResult::nextResult example
Example#1834 - mysql_xdevapi\Statement::__construct example
Example#1835 - mysql_xdevapi\Statement::getNextResult example
Example#1836 - mysql_xdevapi\Statement::getResult example
Example#1837 - mysql_xdevapi\Statement::hasMoreResults example
Example#1838 - mysql_xdevapi\Table::__construct example
Example#1839 - mysql_xdevapi\Table::count example
Example#1840 - mysql_xdevapi\Table::delete example
Example#1841 - mysql_xdevapi\Table::existsInDatabase example
Example#1842 - mysql_xdevapi\Table::getName example
Example#1843 - mysql_xdevapi\Table::getSchema example
Example#1844 - mysql_xdevapi\Table::getSession example
Example#1845 - mysql_xdevapi\Table::insert example
Example#1846 - mysql_xdevapi\Table::isView example
Example#1847 - mysql_xdevapi\Table::count example
Example#1848 - mysql_xdevapi\Table::update example
Example#1849 - mysql_xdevapi\TableDelete::bind example
Example#1850 - mysql_xdevapi\TableDelete::__construct example
Example#1851 - mysql_xdevapi\TableDelete::execute example
Example#1852 - mysql_xdevapi\TableDelete::limit example
Example#1853 - mysql_xdevapi\TableDelete::orderBy example
Example#1854 - mysql_xdevapi\TableDelete::where example
Example#1855 - mysql_xdevapi\TableInsert::__construct example
Example#1856 - mysql_xdevapi\TableInsert::execute example
Example#1857 - mysql_xdevapi\TableInsert::values example
Example#1858 - mysql_xdevapi\TableSelect::bind example
Example#1859 - mysql_xdevapi\TableSelect::__construct example
Example#1860 - mysql_xdevapi\TableSelect::execute example
Example#1861 - mysql_xdevapi\TableSelect::groupBy example
Example#1862 - mysql_xdevapi\TableSelect::having example
Example#1863 - mysql_xdevapi\TableSelect::limit example
Example#1864 - mysql_xdevapi\TableSelect::lockExclusive example
Example#1865 - mysql_xdevapi\TableSelect::lockShared example
Example#1866 - mysql_xdevapi\TableSelect::offset example
Example#1867 - mysql_xdevapi\TableSelect::orderBy example
Example#1868 - mysql_xdevapi\TableSelect::where example
Example#1869 - mysql_xdevapi\TableUpdate::bind example
Example#1870 - mysql_xdevapi\TableUpdate::__construct example
Example#1871 - mysql_xdevapi\TableUpdate::execute example
Example#1872 - mysql_xdevapi\TableUpdate::limit example
Example#1873 - mysql_xdevapi\TableUpdate::orderby example
Example#1874 - mysql_xdevapi\TableUpdate::set example
Example#1875 - mysql_xdevapi\TableUpdate::where example
Example#1876 - mysql_xdevapi\Warning::__construct example
Example#1877 - MySQL extension overview example
Example#1878 - mysql_affected_rows example
Example#1879 - mysql_affected_rows example using transactions
Example#1880 - mysql_client_encoding example
Example#1881 - mysql_close example
Example#1882 - mysql_connect example
Example#1883 - mysql_connect example using hostname:port syntax
Example#1884 - mysql_connect example using ":/path/to/socket" syntax
Example#1885 - mysql_create_db alternative example
Example#1886 - mysql_data_seek example
Example#1887 - mysql_db_name example
Example#1888 - mysql_db_query alternative example
Example#1889 - mysql_drop_db alternative example
Example#1890 - mysql_errno example
Example#1891 - mysql_error example
Example#1892 - mysql_escape_string example
Example#1893 - Query with aliased duplicate field names
Example#1894 - mysql_fetch_array with MYSQL_NUM
Example#1895 - mysql_fetch_array with MYSQL_ASSOC
Example#1896 - mysql_fetch_array with MYSQL_BOTH
Example#1897 - An expanded mysql_fetch_assoc example
Example#1898 - mysql_fetch_field example
Example#1899 - A mysql_fetch_lengths example
Example#1900 - mysql_fetch_object example
Example#1901 - mysql_fetch_object example
Example#1902 - Fetching one row with mysql_fetch_row
Example#1903 - A mysql_field_flags example
Example#1904 - mysql_field_len example
Example#1905 - mysql_field_name example
Example#1906 - A mysql_field_table example
Example#1907 - mysql_field_type example
Example#1908 - A mysql_free_result example
Example#1909 - mysql_get_client_info example
Example#1910 - mysql_get_host_info example
Example#1911 - mysql_get_proto_info example
Example#1912 - mysql_get_server_info example
Example#1913 - Relevant MySQL Statements
Example#1914 - mysql_insert_id example
Example#1915 - mysql_list_dbs example
Example#1916 - Alternate to deprecated mysql_list_fields
Example#1917 - mysql_list_processes example
Example#1918 - mysql_list_tables alternative example
Example#1919 - A mysql_num_fields example
Example#1920 - mysql_num_rows example
Example#1921 - A mysql_ping example
Example#1922 - Invalid Query
Example#1923 - Valid Query
Example#1924 - Simple mysql_real_escape_string example
Example#1925 - mysql_real_escape_string requires a connection example
Example#1926 - An example SQL Injection Attack
Example#1927 - mysql_result example
Example#1928 - mysql_select_db example
Example#1929 - mysql_stat example
Example#1930 - Alternative mysql_stat example
Example#1931 - mysql_tablename example
Example#1932 - mysql_thread_id example
Example#1933 - Examples of code snippets that cause an explicit close
Example#1934 - Examples of code snippets that cause an implicit close
Example#1935 - Usage examples
Example#1936 - Basic query
Example#1937 - Inserting with bind variables
Example#1938 - Binding in the WHERE clause of a query
Example#1939 - Inserting and fetching a CLOB
Example#1940 - Using a PL/SQL stored function
Example#1941 - Using a PL/SQL stored procedure
Example#1942 - Calling a PL/SQL function that returns a REF CURSOR
Example#1943 - Registering a TAF callback
Example#1944 - user_oci8_probes.d for tracing all user-level PHP OCI8 Static Probes with DTrace
Example#1945 - oci_bind_array_by_name example
Example#1946 - Inserting data with oci_bind_by_name
Example#1947 - Binding once for multiple executions
Example#1948 - Binding with a foreach loop
Example#1949 - Binding in a WHERE clause
Example#1950 - Binding with a LIKE clause
Example#1951 - Binding with REGEXP_LIKE
Example#1952 - Binding Multiple Values in an IN Clause
Example#1953 - Binding a ROWID returned by a query
Example#1954 - Binding a ROWID on INSERT
Example#1955 - Binding for a PL/SQL stored function
Example#1956 - Binding parameters for a PL/SQL stored procedure
Example#1957 - Binding a CLOB column
Example#1958 - Binding a PL/SQL BOOLEAN
Example#1959 - oci_client_version example
Example#1960 - Closing a connection
Example#1961 - Database connections are not closed until all references are closed
Example#1962 - Closing a connection opened more than once
Example#1963 - Connections are closed when variables go out of scope
Example#1964 - oci_commit example
Example#1965 - Basic oci_connect using Easy Connect syntax
Example#1966 - Basic oci_connect using a Network Connect name
Example#1967 - oci_connect with an explicit character set
Example#1968 - Using multiple calls to oci_connect
Example#1969 - oci_define_by_name example
Example#1970 - oci_define_by_name with case sensitive column names
Example#1971 - oci_define_by_name with LOB columns
Example#1972 - oci_define_by_name with an explicit type
Example#1973 - Displaying the Oracle error message after a connection error
Example#1974 - Displaying the Oracle error message after a parsing error
Example#1975 - Displaying the Oracle error message, the problematic statement, and the position of the problem of an execution error
Example#1976 - oci_execute for queries
Example#1977 - oci_execute without specifying a mode example
Example#1978 - oci_execute with OCI_NO_AUTO_COMMIT example
Example#1979 - oci_execute with different commit modes example
Example#1980 - oci_execute with OCI_DESCRIBE_ONLY example
Example#1981 - oci_fetch with defined variables
Example#1982 - oci_fetch with oci_result
Example#1983 - oci_fetch_all example
Example#1984 - oci_fetch_all example with OCI_FETCHSTATEMENT_BY_ROW
Example#1985 - oci_fetch_all with OCI_NUM
Example#1986 - oci_fetch_array with OCI_BOTH
Example#1987 - oci_fetch_array with OCI_NUM
Example#1988 - oci_fetch_array with OCI_ASSOC
Example#1989 - oci_fetch_array with OCI_RETURN_NULLS
Example#1990 - oci_fetch_array with OCI_RETURN_LOBS
Example#1991 - oci_fetch_array with case sensitive column names
Example#1992 - oci_fetch_array with columns having duplicate names
Example#1993 - oci_fetch_array with DATE columns
Example#1994 - oci_fetch_array with REF CURSOR
Example#1995 - Pagination with oci_fetch_array using a LIMIT-like query
Example#1996 - oci_fetch_array with Oracle Database Implicit Result Sets
Example#1997 - oci_fetch_assoc Example
Example#1998 - oci_fetch_object example
Example#1999 - oci_fetch_object with case sensitive column names
Example#2000 - oci_fetch_object with LOBs
Example#2001 - oci_fetch_row Example
Example#2002 - oci_field_name example
Example#2003 - oci_field_name example
Example#2004 - oci_field_precision Example
Example#2005 - oci_field_scale Example
Example#2006 - oci_field_size example
Example#2007 - oci_field_type example
Example#2008 - oci_field_type_raw Example
Example#2009 - Fetching Implicit Result Sets in a loop
Example#2010 - Getting child statement handles individually
Example#2011 - Explicitly setting the Prefetch Count
Example#2012 - Implicit Result Set example without using oci_get_implicit_resultset
Example#2013 - oci_new_connect example
Example#2014 - Binding a REF CURSOR in an Oracle stored procedure call
Example#2015 - oci_new_descriptor example
Example#2016 - oci_new_descriptor example
Example#2017 - oci_num_fields example
Example#2018 - oci_num_rows example
Example#2019 - oci_parse example for SQL statements
Example#2020 - oci_parse example for PL/SQL statements
Example#2021 - oci_password_change example changing the password of an already connected user
Example#2022 - oci_password_change example of connecting and changing the password in one step
Example#2023 - Basic oci_pconnect Example using Easy Connect syntax
Example#2024 - oci_fetch with oci_result
Example#2025 - oci_rollback example
Example#2026 - Rolling back to a SAVEPOINT example
Example#2027 - oci_server_version example
Example#2028 - Setting the action
Example#2029 - Setting the timeout
Example#2030 - Setting the client identifier to the application user
Example#2031 - Setting the client information
Example#2032 - Setting the DBOP
Example#2033 - Two scripts can use different versions of myfunc() at the same time
Example#2034 - Setting the module name
Example#2035 - Changing the default prefetch value for a query
Example#2036 - Changing the default prefetch for a REF CURSOR fetch
Example#2037 - Setting the prefetch value when passing a REF CURSOR back to Oracle
Example#2038 - Changing the LOB prefetch value for a query
Example#2039 - oci_statement_type example
Example#2040 - PostgreSQL extension overview example
Example#2041 - PostgreSQL user defined functions example
Example#2042 - pg_affected_rows example
Example#2043 - pg_cancel_query example
Example#2044 - pg_client_encoding example
Example#2045 - pg_close example
Example#2046 - Using pg_connect
Example#2047 - pg_connection_busy example
Example#2048 - pg_connection_reset example
Example#2049 - pg_connection_status example
Example#2050 - pg_convert example
Example#2051 - pg_copy_from example
Example#2052 - pg_copy_to example
Example#2053 - pg_dbname example
Example#2054 - pg_delete example
Example#2055 - pg_end_copy example
Example#2056 - pg_escape_bytea example
Example#2057 - pg_escape_identifier example
Example#2058 - pg_escape_literal example
Example#2059 - pg_escape_string example
Example#2060 - Using pg_execute
Example#2061 - PostgreSQL fetch all
Example#2062 - pg_fetch_all_columns example
Example#2063 - pg_fetch_array example
Example#2064 - pg_fetch_assoc example
Example#2065 - pg_fetch_object example
Example#2066 - pg_fetch_result example
Example#2067 - pg_fetch_row example
Example#2068 - pg_field_is_null example
Example#2069 - Getting information about fields
Example#2070 - Getting information about fields
Example#2071 - Getting information about fields
Example#2072 - Getting information about fields
Example#2073 - Getting table information about a field
Example#2074 - Getting information about fields
Example#2075 - Getting information about fields
Example#2076 - pg_free_result example
Example#2077 - PostgreSQL NOTIFY message
Example#2078 - PostgreSQL backend PID
Example#2079 - pg_get_result example
Example#2080 - pg_host example
Example#2081 - pg_insert example
Example#2082 - pg_last_error example
Example#2083 - pg_last_notice example
Example#2084 - pg_last_oid example
Example#2085 - pg_lo_close example
Example#2086 - pg_lo_create example
Example#2087 - pg_lo_export example
Example#2088 - pg_lo_import example
Example#2089 - pg_lo_open example
Example#2090 - pg_lo_read example
Example#2091 - pg_lo_read_all example
Example#2092 - pg_lo_seek example
Example#2093 - pg_lo_tell example
Example#2094 - pg_lo_truncate example
Example#2095 - pg_lo_unlink example
Example#2096 - pg_lo_write example
Example#2097 - Getting table metadata
Example#2098 - pg_num_fields example
Example#2099 - pg_num_rows example
Example#2100 - pg_options example
Example#2101 - pg_parameter_status example
Example#2102 - Using pg_pconnect
Example#2103 - pg_ping example
Example#2104 - pg_port example
Example#2105 - Using pg_prepare
Example#2106 - pg_put_line example
Example#2107 - pg_query example
Example#2108 - Using pg_query with multiple statements
Example#2109 - Using pg_query_params
Example#2110 - pg_result_error example
Example#2111 - pg_result_error_field example
Example#2112 - pg_result_memory_size example
Example#2113 - pg_result_seek example
Example#2114 - pg_result_status example
Example#2115 - pg_select example
Example#2116 - Using pg_send_execute
Example#2117 - Using pg_send_prepare
Example#2118 - pg_send_query example
Example#2119 - Using pg_send_query_params
Example#2120 - pg_result_memory_size example
Example#2121 - pg_set_client_encoding example
Example#2122 - pg_set_error_context_visibility example
Example#2123 - pg_set_error_verbosity example
Example#2124 - pg_trace example
Example#2125 - pg_transaction_status example
Example#2126 - pg_tty example
Example#2127 - pg_unescape_bytea example
Example#2128 - pg_untrace example
Example#2129 - pg_update example
Example#2130 - pg_version example
Example#2131 - Backup an existing database
Example#2132 - SQLite3::changes example
Example#2133 - SQLite3::close example
Example#2134 - SQLite3::__construct example
Example#2135 - max_length aggregation function example
Example#2136 - SQLite3::createCollation example
Example#2137 - SQLite3::createFunction example
Example#2138 - SQLite3::enableExceptions example
Example#2139 - SQLite3::exec example
Example#2140 - SQLite3::loadExtension example
Example#2141 - SQLite3::open example
Example#2142 - SQLite3::openBlob example
Example#2143 - Incrementally writing a BLOB
Example#2144 - SQLite3::prepare example
Example#2145 - SQLite3::query example
Example#2146 - SQLite3::querySingle example
Example#2147 - SQLite3::setAuthorizer example
Example#2148 - SQLite3::version example
Example#2149 - SQLite3Stmt::bindParam Usage
Example#2150 - SQLite3Stmt::bindValue example
Example#2151 - Inspecting the expanded SQL
Example#2152 - sqlsrv_begin_transaction example
Example#2153 - sqlsrv_cancel example
Example#2154 - sqlsrv_client_info example
Example#2155 - sqlsrv_close example
Example#2156 - sqlsrv_commit example
Example#2157 - Connect using Windows Authentication.
Example#2158 - Connect by specifying a user name and password.
Example#2159 - Connect on a specified port.
Example#2160 - functionname example
Example#2161 - sqlsrv_execute example
Example#2162 - sqlsrv_fetch example
Example#2163 - Retrieving an associative array.
Example#2164 - Retrieving a numeric array.
Example#2165 - sqlsrv_fetch_object example
Example#2166 - sqlsrv_field_metadata example
Example#2167 - sqlsrv_free_stmt example
Example#2168 - sqlsrv_get_field example
Example#2169 - sqlsrv_has_rows example
Example#2170 - sqlsrv_next_result example
Example#2171 - sqlsrv_num_fields example
Example#2172 - sqlsrv_num_rows example
Example#2173 - sqlsrv_prepare example
Example#2174 - sqlsrv_query example
Example#2175 - sqlsrv_rollback example
Example#2176 - sqlsrv_rows_affected example
Example#2177 - sqlsrv_send_stream_data example
Example#2178 - sqlsrv_server_info example
Example#2179 - cal_days_in_month example
Example#2180 - cal_from_jd example
Example#2181 - cal_info example
Example#2182 - easter_date example
Example#2183 - Using easter_date with DateTime
Example#2184 - easter_days example
Example#2185 - Calendar functions
Example#2186 - Overflow behavior
Example#2187 - jdtojewish Example
Example#2188 - DateTimeImmutable::add/sub add intervals which cover elapsed time
Example#2189 - DateTimeImmutable::modify and strtotime increment or decrement individual component values
Example#2190 - Adding or subtracting times can over- or underflow dates
Example#2191 - Creating a mutable date time object
Example#2192 - Creating a mutable date time object
Example#2193 - DateTime::modify example
Example#2194 - Beware when adding or subtracting months
Example#2195 - All formats of Date and Time are supported
Example#2196 - DateTime::setTimeZone example
Example#2197 - DateTimeImmutable::add example
Example#2198 - Further DateTimeImmutable::add examples
Example#2199 - Beware when adding months
Example#2200 - DateTimeImmutable::__construct example
Example#2201 - Intricacies of DateTimeImmutable::__construct
Example#2202 - Changing the associated timezone
Example#2203 - Using a relative date/time string
Example#2204 - DateTimeImmutable::createFromFormat example
Example#2205 - Using predefined format constants with DateTimeImmutable::createFromFormat
Example#2206 - Intricacies of DateTimeImmutable::createFromFormat
Example#2207 - Format string with literal characters
Example#2208 - Overflow behaviour
Example#2209 - Overflowing day name behaviour
Example#2210 - Detecting overflown dates
Example#2211 - Greedy parsing behaviour
Example#2212 - Creating an immutable date time object
Example#2213 - Creating an immutable date time object
Example#2214 - DateTimeImmutable::getLastErrors example
Example#2215 - Detecting rolled over dates
Example#2216 - DateTimeImmutable::modify example
Example#2217 - Beware when adding or subtracting months
Example#2218 - DateTimeImmutable::setDate example
Example#2219 - Values exceeding ranges are added to their parent values
Example#2220 - DateTimeImmutable::setISODate example
Example#2221 - Values exceeding ranges are added to their parent values
Example#2222 - Finding the month a week is in
Example#2223 - DateTimeImmutable::setTime example
Example#2224 - Values exceeding ranges are added to their parent values
Example#2225 - DateTimeImmutable::setTimestamp example
Example#2226 - DateTimeImmutable::setTimeZone example
Example#2227 - DateTimeImmutable::sub example
Example#2228 - Further DateTimeImmutable::sub examples
Example#2229 - Beware when subtracting months
Example#2230 - DateTimeImmutable::diff example
Example#2231 - DateTimeInterface::diff during DST changeover
Example#2232 - DateTimeInterface::diff range
Example#2233 - DateTime object comparison
Example#2234 - DateTimeInterface::format example
Example#2235 - More examples
Example#2236 - Escaping characters while formatting
Example#2237 - DateTime::getOffset example
Example#2238 - DateTime::getTimestamp example
Example#2239 - Retrieving timestamp with milli and microsecond resolution
Example#2240 - DateTime::getTimezone example
Example#2241 - DateTime::serialize example
Example#2242 - DateTime::unserialize example
Example#2243 - Creating and attaching DateTimeZone to a DateTimeImmutable
Example#2244 - Catching errors when instantiating DateTimeZone
Example#2245 - DateTimeZone::getLocation example
Example#2246 - DateTimeZone::getOffset examples
Example#2247 - A timezone_transitions_get example
Example#2248 - A timezone_transitions_get example with timestampBegin set
Example#2249 - A timezone_abbreviations_list example
Example#2250 - A DateTimeZone::listIdentifiers example
Example#2251 - Listing identifiers for a specific region
Example#2252 - Listing identifiers for multiple regions
Example#2253 - Listing identifiers for a single country
Example#2254 - Constructing and using DateInterval objects
Example#2255 - DateInterval example
Example#2256 - Parsing valid date intervals
Example#2257 - Parsing combinations and negative intervals
Example#2258 - Parsing special relative date intervals
Example#2259 - DateInterval example
Example#2260 - DateInterval and carry over points
Example#2261 - DateInterval and DateTime::diff with the %a and %d modifiers
Example#2262 - DatePeriod example
Example#2263 - DatePeriod example with DatePeriod::EXCLUDE_START_DATE
Example#2264 - DatePeriod example showing all last Thursdays in a year
Example#2265 - DatePeriod::createFromISO8601String example
Example#2266 - DatePeriod::getDateInterval example
Example#2267 - DatePeriod::getEndDate example
Example#2268 - DatePeriod::getEndDate without an end date
Example#2269 - Different values for DatePeriod::getRecurrences
Example#2270 - DatePeriod::getStartDate example
Example#2271 - checkdate example
Example#2272 - date examples
Example#2273 - Escaping characters in date
Example#2274 - date Formatting
Example#2275 - Getting the default timezone
Example#2276 - Getting the abbreviation of a timezone
Example#2277 - Getting the default timezone
Example#2278 - A date_parse example with a comprehensive datetime string
Example#2279 - date_parse with timezone abbreviation information
Example#2280 - date_parse with timezone identifier information
Example#2281 - date_parse with a minimal string
Example#2282 - date_parse with relative formats
Example#2283 - date_parse with side-effects
Example#2284 - date_parse_from_format example
Example#2285 - date_parse_from_format with warnings example
Example#2286 - date_parse_from_format with errors example
Example#2287 - A date_sun_info example
Example#2288 - Polar night, with some processing
Example#2289 - Midnight sun (Tromsø, Norway)
Example#2290 - Calculating length of day (Kyiv)
Example#2291 - date_sunrise example
Example#2292 - No sunrise
Example#2293 - date_sunset example
Example#2294 - No sunset
Example#2295 - getdate example
Example#2296 - gettimeofday example
Example#2297 - gmdate example
Example#2298 - gmmktime basic example
Example#2299 - gmstrftime example
Example#2300 - idate example
Example#2301 - localtime example
Example#2302 - Timing script execution
Example#2303 - microtime and REQUEST_TIME_FLOAT
Example#2304 - mktime basic example
Example#2305 - mktime example
Example#2306 - Using mktime to find relative dates
Example#2307 - Last day of a month
Example#2308 - strftime locale examples
Example#2309 - ISO 8601:1988 week number example
Example#2310 - Cross platform compatible example using the %e modifier
Example#2311 - Display all known and unknown formats
Example#2312 - strptime example
Example#2313 - A strtotime example
Example#2314 - Checking for failure
Example#2315 - time example
Example#2316 - A timezone_name_from_abbr example
Example#2317 - Getting the timezonedb version
Example#2318 - Measure several code blocks execution and get the total
Example#2319 - Closing an open file descriptor
Example#2320 - Setting and clearing a lock
Example#2321 - Opening a file descriptor
Example#2322 - Positioning in a file
Example#2323 - Setting the baud rate on a serial port
Example#2324 - chdir example
Example#2325 - chroot example
Example#2326 - closedir example
Example#2327 - dir example
Example#2328 - getcwd example
Example#2329 - opendir example
Example#2330 - List all entries in a directory
Example#2331 - List all entries in the current directory and strip out . and ..
Example#2332 - A simple scandir example
Example#2333 - A finfo_buffer example
Example#2334 - A finfo_file example
Example#2335 - Object-oriented style
Example#2336 - Procedural style
Example#2337 - mime_content_type Example
Example#2338 - basename example
Example#2339 - Changing a file's group
Example#2340 - Simple chown usage
Example#2341 - clearstatcache example
Example#2342 - copy example
Example#2343 - dirname example
Example#2344 - disk_free_space example
Example#2345 - disk_total_space example
Example#2346 - A simple fclose example
Example#2347 - fdatasync example
Example#2348 - Handling timeouts with feof
Example#2349 - feof example with an invalid file pointer
Example#2350 - File write example using fflush
Example#2351 - A fgetc example
Example#2352 - Read and print the entire contents of a CSV file
Example#2353 - Reading a file line by line
Example#2354 - Reading a PHP file line-by-line
Example#2355 - file example
Example#2356 - Testing whether a file exists
Example#2357 - Get and output the source of the homepage of a website
Example#2358 - Searching within the include_path
Example#2359 - Reading a section of a file
Example#2360 - Using stream contexts
Example#2361 - Simple usage example
Example#2362 - Using flags
Example#2363 - fileatime example
Example#2364 - A filectime example
Example#2365 - Finding the group of a file
Example#2366 - Comparing the inode of a file with the current file
Example#2367 - filemtime example
Example#2368 - Finding the owner of a file
Example#2369 - Display permissions as an octal value
Example#2370 - Display full permissions
Example#2371 - filesize example
Example#2372 - filetype example
Example#2373 - flock example
Example#2374 - flock using the LOCK_NB option
Example#2375 - Checking a color name against a shell wildcard pattern
Example#2376 - fopen examples
Example#2377 - Using fpassthru with binary files
Example#2378 - fputcsv example
Example#2379 - A simple fread example
Example#2380 - Binary fread example
Example#2381 - Remote fread examples
Example#2382 - fscanf Example
Example#2383 - Contents of users.txt
Example#2384 - fseek example
Example#2385 - fstat example
Example#2386 - fsync example
Example#2387 - ftell example
Example#2388 - File truncation example
Example#2389 - A simple fwrite example
Example#2390 - Convenient way how glob can replace opendir and friends.
Example#2391 - Example with a more complex pattern
Example#2392 - is_dir example
Example#2393 - is_executable example
Example#2394 - is_file example
Example#2395 - Create and confirm if a file is a symbolic link
Example#2396 - is_readable example
Example#2397 - is_uploaded_file example
Example#2398 - is_writable example
Example#2399 - Changing the group of a symbolic link
Example#2400 - Changing the owner of a symbolic link
Example#2401 - Creating a simple hard link
Example#2402 - linkinfo example
Example#2403 - Comparison of stat and lstat
Example#2404 - mkdir example
Example#2405 - mkdir using the recursive parameter
Example#2406 - Uploading multiple files
Example#2407 - Contents of sample.ini
Example#2408 - parse_ini_file example
Example#2409 - parse_ini_file parsing a php.ini file
Example#2410 - Value Interpolation
Example#2411 - Escaping Characters
Example#2412 - pathinfo Example
Example#2413 - pathinfo example showing difference between null and no extension
Example#2414 - pathinfo example for a dot-file
Example#2415 - pathinfo example with array dereferencing
Example#2416 - pclose example
Example#2417 - popen example
Example#2418 - popen example
Example#2419 - Forcing a download using readfile
Example#2420 - readlink example
Example#2421 - realpath example
Example#2422 - realpath on Windows
Example#2423 - realpath_cache_get example
Example#2424 - realpath_cache_size example
Example#2425 - Example with rename
Example#2426 - rewind overwriting example
Example#2427 - rmdir example
Example#2428 - stat example
Example#2429 - Using stat information together with touch
Example#2430 - Create a symbolic link
Example#2431 - tempnam example
Example#2432 - tmpfile example
Example#2433 - touch example
Example#2434 - touch using the mtime parameter
Example#2435 - umask example
Example#2436 - Basic unlink usage
Example#2437 - Example usage of inotify
Example#2438 - Checks if system administrator has signed the file
Example#2439 - Prints names of all extended attributes of file
Example#2440 - Removes all extended attributes of a file
Example#2441 - Sets extended attributes on .wav file
Example#2442 - xattr_supported example
Example#2443 - xdiff_file_bdiff example
Example#2444 - xdiff_file_bdiff_size example
Example#2445 - xdiff_file_bpatch example
Example#2446 - xdiff_file_diff example
Example#2447 - xdiff_file_diff_binary example
Example#2448 - xdiff_file_merge3 example
Example#2449 - xdiff_file_patch example
Example#2450 - Patch reversing example
Example#2451 - xdiff_file_patch_binary example
Example#2452 - xdiff_file_rabdiff example
Example#2453 - xdiff_string_bdiff_size example
Example#2454 - xdiff_string_diff example
Example#2455 - xdiff_string_patch example
Example#2456 - Enchant Usage Example
Example#2457 - List the backends provided by the given broker
Example#2458 - A enchant_broker_dict_exists example
Example#2459 - List all available dictionaries for one broker
Example#2460 - A enchant_broker_request_dict example
Example#2461 - Adding a word to a PWL
Example#2462 - A enchant_dict_describe example
Example#2463 - A enchant_dict_quick_check example
Example#2464 - A enchant_dict_suggest example
Example#2465 - Usage example.
Example#2466 - Using Gender\Gender::country
Example#2467 - bindtextdomain example
Example#2468 - gettext-check
Example#2469 - ngettext example
Example#2470 - iconv example
Example#2471 - iconv_get_encoding example
Example#2472 - iconv_mime_decode example
Example#2473 - iconv_mime_decode_headers example
Example#2474 - iconv_mime_encode example
Example#2475 - iconv_set_encoding example
Example#2476 - ob_iconv_handler example:
Example#2477 - Example of using the procedural API
Example#2478 - Example of using the object-oriented API
Example#2479 - FRENCH_COLLATION rules
Example#2480 - ALTERNATE_HANDLING rules
Example#2481 - CASE_FIRST rules
Example#2482 - CASE_LEVEL rules
Example#2483 - collator_asort example
Example#2484 - collator_compare example
Example#2485 - Comparing strings without diacritics or case-sensitivity
Example#2486 - Collator::__construct example
Example#2487 - collator_create example
Example#2488 - collator_get_attribute example
Example#2489 - collator_get_error_code example
Example#2490 - collator_get_error_message example
Example#2491 - collator_get_locale example
Example#2492 - collator_get_sort_key example
Example#2493 - Collator::getSortKey example with usort
Example#2494 - collator_get_strength example
Example#2495 - collator_set_attribute example
Example#2496 - collator_set_strength example
Example#2497 - collator_sort example
Example#2498 - collator_sort_with_sort_keys example
Example#2499 - numfmt_create example
Example#2500 - NumberFormatter::create example
Example#2501 - numfmt_format example
Example#2502 - OO example
Example#2503 - numfmt_format_currency example
Example#2504 - OO example
Example#2505 - numfmt_get_attribute example
Example#2506 - OO example
Example#2507 - numfmt_get_error_code example
Example#2508 - OO example
Example#2509 - numfmt_get_error_message example
Example#2510 - OO example
Example#2511 - numfmt_get_locale example
Example#2512 - numfmt_get_pattern example
Example#2513 - OO example
Example#2514 - numfmt_get_symbol example
Example#2515 - OO example
Example#2516 - numfmt_get_text_attribute example
Example#2517 - OO example
Example#2518 - numfmt_parse example
Example#2519 - OO example
Example#2520 - numfmt_parse_currency example
Example#2521 - OO example
Example#2522 - numfmt_set_attribute example
Example#2523 - OO example
Example#2524 - numfmt_set_pattern example
Example#2525 - OO example
Example#2526 - numfmt_set_symbol example
Example#2527 - OO example
Example#2528 - numfmt_set_text_attribute example
Example#2529 - OO example
Example#2530 - locale_accept_from_http example
Example#2531 - OO example
Example#2532 - locale_canonicalize example
Example#2533 - locale_compose example
Example#2534 - OO example
Example#2535 - Subtag limits
Example#2536 - locale_filter_matches example
Example#2537 - OO example
Example#2538 - locale_get_all_variants example
Example#2539 - OO example
Example#2540 - locale_get_default example
Example#2541 - OO example
Example#2542 - locale_get_display_language example
Example#2543 - OO example
Example#2544 - locale_get_display_name example
Example#2545 - OO example
Example#2546 - locale_get_display_region example
Example#2547 - OO example
Example#2548 - locale_get_display_script example
Example#2549 - OO example
Example#2550 - locale_get_display_variant example
Example#2551 - OO example
Example#2552 - locale_get_keywords example
Example#2553 - OO example
Example#2554 - locale_get_primary_language example
Example#2555 - OO example
Example#2556 - locale_get_region example
Example#2557 - OO example
Example#2558 - locale_get_script example
Example#2559 - OO example
Example#2560 - locale_lookup example
Example#2561 - OO example
Example#2562 - locale_parse example
Example#2563 - OO example
Example#2564 - locale_set_default example
Example#2565 - OO example
Example#2566 - Normalizer::getRawDecomposition example
Example#2567 - normalizer_is_normalized example
Example#2568 - OO example
Example#2569 - normalizer_normalize example
Example#2570 - OO example
Example#2571 - msgfmt_create example
Example#2572 - OO example
Example#2573 - msgfmt_format example
Example#2574 - OO example
Example#2575 - msgfmt_format_message example
Example#2576 - OO example
Example#2577 - Instructing ICU to format currency with common and with narrow currency symbol
Example#2578 - msgfmt_get_error_message example
Example#2579 - OO example
Example#2580 - msgfmt_get_locale example
Example#2581 - OO example
Example#2582 - msgfmt_get_pattern example
Example#2583 - OO example
Example#2584 - msgfmt_parse example
Example#2585 - OO example
Example#2586 - msgfmt_parse_message example
Example#2587 - OO example
Example#2588 - msgfmt_set_pattern example
Example#2589 - OO example
Example#2590 - IntlCalendar::add
Example#2591 - IntlCalendar::after
Example#2592 - IntlCalendar::clear examples
Example#2593 - IntlCalendar::createInstance
Example#2594 - IntlCalendar::equals
Example#2595 - IntlCalendar::fieldDifference
Example#2596 - IntlCalendar::fromDateTime
Example#2597 - IntlCalendar::get
Example#2598 - IntlCalendar::getActualMaximum
Example#2599 - IntlCalendar::getAvailableLocales
Example#2600 - IntlCalendar::getDayOfWeekType
Example#2601 - IntlCalendar::getErrorCode and IntlCalendar::getErrorMessage
Example#2602 - IntlCalendar::getErrorMessage
Example#2603 - IntlCalendar::getFirstDayOfWeek
Example#2604 - IntlCalendar::getKeyworkValuesForLocale
Example#2605 - Maxima examples
Example#2606 - IntlCalendar::getLocale
Example#2607 - IntlCalendar::getMinimalDaysInFirstWeek
Example#2608 - IntlCalendar::getNow
Example#2609 - IntlCalendar::getRepeatedWallTimeOption
Example#2610 - IntlCalendar::getSkippedWallTimeOption
Example#2611 - IntlCalendar::getTime
Example#2612 - IntlCalendar::getTimeZone
Example#2613 - IntlCalendar::getType
Example#2614 - IntlCalendar::inDaylightTime
Example#2615 - IntlCalendar::isEquivalentTo
Example#2616 - IntlCalendar::isLenient
Example#2617 - IntlCalendar::isWeekend
Example#2618 - IntlCalendar::roll
Example#2619 - IntlCalendar::set
Example#2620 - IntlCalendar::setDate example
Example#2621 - IntlCalendar::setDateTime example
Example#2622 - IntlCalendar::setFirstDayOfWeek
Example#2623 - IntlCalendar::setTime
Example#2624 - IntlCalendar::setTimeZone
Example#2625 - IntlCalendar::toDateTime
Example#2626 - IntlGregorianCalendar::createFromDate example
Example#2627 - IntlGregorianCalendar::createFromDateTime example
Example#2628 - datefmt_create example
Example#2629 - OO example
Example#2630 - Example of invalid locale handling
Example#2631 - datefmt_format example
Example#2632 - OO example
Example#2633 - With IntlCalendar object
Example#2634 - IntlDateFormatter::formatObject examples
Example#2635 - datefmt_get_calendar example
Example#2636 - OO example
Example#2637 - Example of invalid locale handling
Example#2638 - datefmt_get_datetype example
Example#2639 - OO example
Example#2640 - datefmt_get_error_code example
Example#2641 - OO example
Example#2642 - datefmt_get_error_message example
Example#2643 - OO example
Example#2644 - datefmt_get_locale example
Example#2645 - OO example
Example#2646 - datefmt_get_pattern example
Example#2647 - OO example
Example#2648 - datefmt_get_timetype example
Example#2649 - OO example
Example#2650 - datefmt_get_timezone_id example
Example#2651 - OO example
Example#2652 - IntlDateFormatter::getCalendarObject example
Example#2653 - IntlDateFormatter::getTimeZone examples
Example#2654 - datefmt_is_lenient example
Example#2655 - OO example
Example#2656 - datefmt_localtime example
Example#2657 - OO example
Example#2658 - OO example
Example#2659 - datefmt_parse example
Example#2660 - datefmt_set_calendar example
Example#2661 - OO example
Example#2662 - Example with IntlCalendar argument
Example#2663 - datefmt_set_lenient example
Example#2664 - OO example
Example#2665 - datefmt_set_pattern example
Example#2666 - OO example
Example#2667 - IntlDateFormatter::setTimeZone examples
Example#2668 - resourcebundle_count example
Example#2669 - OO example
Example#2670 - resourcebundle_create example
Example#2671 - ResourceBundle::create example
Example#2672 - resourcebundle_get example
Example#2673 - OO example
Example#2674 - resourcebundle_get_error_code example
Example#2675 - OO example
Example#2676 - resourcebundle_get_error_message example
Example#2677 - OO example
Example#2678 - resourcebundle_locales example
Example#2679 - OO example
Example#2680 - Spoofchecker::areConfusable example
Example#2681 - Spoofchecker::isSuspicious example
Example#2682 - Retrieving the registered transliterator IDs
Example#2683 - Converting escaped UTF-16 code units
Example#2684 - IntlDatePatternGenerator::getBestPattern example
Example#2685 - Converting from UTF-8 to UTF-16 and back
Example#2686 - Invalid characters in input
Example#2687 - Characters which cannot be encoded
Example#2688 - grapheme_extract example
Example#2689 - grapheme_stripos example
Example#2690 - grapheme_stristr example
Example#2691 - grapheme_strlen example
Example#2692 - grapheme_strpos example
Example#2693 - grapheme_strripos example
Example#2694 - grapheme_strrpos example
Example#2695 - grapheme_strstr example
Example#2696 - grapheme_substr example
Example#2697 - idn_to_ascii example
Example#2698 - All-ASCII domain names are just converted to lowercase
Example#2699 - idn_to_utf8 example
Example#2700 - Testing different code points
Example#2701 - Testing different code points
Example#2702 - Testing different code points
Example#2703 - Testing different code points
Example#2704 - Testing different code points
Example#2705 - Testing different code points
Example#2706 - Testing different code points
Example#2707 - Testing different code points
Example#2708 - Testing different code points
Example#2709 - Enumerating over a sample range of code points
Example#2710 - Enumerating over a sample range of code points
Example#2711 - Testing different code points
Example#2712 - Testing different code points
Example#2713 - Testing different code points
Example#2714 - Testing different code points
Example#2715 - Testing different code points
Example#2716 - Testing different properties
Example#2717 - Testing different properties
Example#2718 - Testing different properties
Example#2719 - Testing different code points
Example#2720 - Testing different properties
Example#2721 - Testing different properties
Example#2722 - Testing different properties
Example#2723 - Testing different properties
Example#2724 - Testing different properties
Example#2725 - Testing different properties
Example#2726 - Testing different code points
Example#2727 - Testing different code points
Example#2728 - Testing different code points
Example#2729 - Testing different code points
Example#2730 - Testing different code points
Example#2731 - Testing different code points
Example#2732 - Testing different code points
Example#2733 - Testing different code points
Example#2734 - Testing different code points
Example#2735 - Testing different code points
Example#2736 - Testing different code points
Example#2737 - Testing different code points
Example#2738 - Testing different code points
Example#2739 - Testing different code points
Example#2740 - Testing different code points
Example#2741 - Testing different code points
Example#2742 - Testing different code points
Example#2743 - Testing different code points
Example#2744 - Testing different code points
Example#2745 - Testing different code points
Example#2746 - Testing different code points
Example#2747 - Testing different code points
Example#2748 - Testing different code points
Example#2749 - Testing different code points
Example#2750 - Testing different code points
Example#2751 - Testing different code points
Example#2752 - Testing different code points
Example#2753 - Testing different code points
Example#2754 - Testing different code points
Example#2755 - Testing different code points
Example#2756 - Testing different code points
Example#2757 - Testing different code points
Example#2758 - intl_error_name example
Example#2759 - intl_get_error_code example
Example#2760 - intl_get_error_message example
Example#2761 - intl_is_failure example
Example#2762 - php.ini setting examples
Example#2763 - php.ini setting for EUC-JP users
Example#2764 - php.ini setting for SJIS users
Example#2765 - Disable HTTP input conversion in php.ini
Example#2766 - php.ini setting example
Example#2767 - Script example
Example#2768 - Testing different code points
Example#2769 - mb_convert_case example
Example#2770 - mb_convert_case example with non-Latin UTF-8 text
Example#2771 - mb_convert_encoding example
Example#2772 - mb_convert_kana example
Example#2773 - mb_convert_variables example
Example#2774 - map example
Example#2775 - map example escapes JavaScript string
Example#2776 - mb_detect_encoding example
Example#2777 - Effect of strict parameter
Example#2778 - Effect of order when multiple encodings match
Example#2779 - mb_detect_order examples
Example#2780 - Example showing useless detect orders
Example#2781 - mb_encode_mimeheader example
Example#2782 - map example
Example#2783 - mb_encode_numericentity example
Example#2784 - mb_encoding_aliases example
Example#2785 - mb_ereg_replace_callback example
Example#2786 - mb_ereg_replace_callback using anonymous function
Example#2787 - mb_internal_encoding example
Example#2788 - mb_list_encodings example
Example#2789 - A basic mb_ord example
Example#2790 - mb_output_handler example
Example#2791 - mb_preferred_mime_name example
Example#2792 - mb_str_pad example
Example#2793 - mb_strimwidth example
Example#2794 - mb_strtolower example
Example#2795 - mb_strtolower example with non-Latin UTF-8 text
Example#2796 - mb_strtoupper example
Example#2797 - mb_strtoupper example with non-Latin UTF-8 text
Example#2798 - mb_strwidth example
Example#2799 - mb_substitute_character example
Example#2800 - mb_substr_count example
Example#2801 - pspell_add_to_personal
Example#2802 - pspell_check Example
Example#2803 - pspell_add_to_personal Example
Example#2804 - pspell_config_create
Example#2805 - pspell_config_ignore
Example#2806 - pspell_config_mode Example
Example#2807 - pspell_config_personal
Example#2808 - pspell_config_repl
Example#2809 - pspell_config_runtogether
Example#2810 - pspell_new
Example#2811 - pspell_new_config
Example#2812 - pspell_new_personal
Example#2813 - pspell_add_to_personal
Example#2814 - pspell_store_replacement
Example#2815 - pspell_suggest example
Example#2816 - Basic recode_file example
Example#2817 - Basic recode_string example
Example#2818 - exif_imagetype example
Example#2819 - exif_read_data example
Example#2820 - exif_read_data with streams available as of PHP 7.2.0
Example#2821 - exif_tagname example
Example#2822 - exif_thumbnail example
Example#2823 - PNG creation with PHP
Example#2824 - Adding watermarks to images using alpha channels
Example#2825 - Using imagecopymerge to create a translucent watermark
Example#2826 - Using gd_info
Example#2827 - getimagesize and MIME types
Example#2828 - getimagesize example
Example#2829 - getimagesize (URL)
Example#2830 - getimagesize() returning IPTC
Example#2831 - getimagesizefromstring example
Example#2832 - image_type_to_extension example
Example#2833 - image_type_to_mime_type example
Example#2834 - image2wbmp example
Example#2835 - imageaffinematrixconcat example
Example#2836 - imageaffinematrixget example
Example#2837 - imagealphablending usage example
Example#2838 - A comparison of two lines, one with anti-aliasing switched on
Example#2839 - Drawing a circle with imagearc
Example#2840 - Saving a BMP file
Example#2841 - imagechar example
Example#2842 - imagecharup example
Example#2843 - imagecolorallocate example
Example#2844 - Example of using imagecolorallocatealpha
Example#2845 - Convert typical alpha values for use with imagecolorallocatealpha
Example#2846 - Access distinct RGB values
Example#2847 - Human-readable RGB values using imagecolorsforindex
Example#2848 - Search for a set of colors in an image
Example#2849 - Search for a set of colors in an image
Example#2850 - Example of using imagecolorclosesthwb
Example#2851 - Using imagecolordeallocate
Example#2852 - Get colors from the GD logo
Example#2853 - Get colors from the GD logo
Example#2854 - imagecolormatch example
Example#2855 - Using imagecoloresolve to get colors from an image
Example#2856 - Using imagecoloresolvealpha to get colors from an image
Example#2857 - imagecolorset example
Example#2858 - imagecolorsforindex example
Example#2859 - Getting total number of colors in an image using imagecolorstotal
Example#2860 - imagecolortransparent example
Example#2861 - Embossing the PHP.net logo
Example#2862 - Gaussian blur
Example#2863 - Cropping the PHP.net logo
Example#2864 - Merging two copies of the PHP.net logo with 75% transparency
Example#2865 - imagecopymergegray usage
Example#2866 - Simple example
Example#2867 - Resampling an image proportionally
Example#2868 - Resizing an image
Example#2869 - Creating a new GD image stream and outputting an image.
Example#2870 - Convert an BMP image to a PNG image using imagecreatefrombmp
Example#2871 - imagecreatefromgd example
Example#2872 - imagecreatefromgd2 example
Example#2873 - imagecreatefromgd2part example
Example#2874 - Example to handle an error during loading of a GIF
Example#2875 - Example to handle an error during loading of a JPEG
Example#2876 - Example to handle an error during loading of a PNG
Example#2877 - imagecreatefromstring example
Example#2878 - Example to handle an error during loading of a WBMP
Example#2879 - Convert an WebP image to a jpeg image using imagecreatefromwebp
Example#2880 - Convert an XBM image to a png image using imagecreatefromxbm
Example#2881 - Creating an image instance using imagecreatefromxpm
Example#2882 - Creating a new GD image stream and outputting an image.
Example#2883 - imagecrop example
Example#2884 - Proper handling of auto-cropping
Example#2885 - imagedashedline example
Example#2886 - Alternative to imagedashedline
Example#2887 - Using imagedestroy prior to PHP 8.0.0
Example#2888 - imageellipse example
Example#2889 - imagefill example
Example#2890 - Creating a 3D looking pie
Example#2891 - imagefilledellipse example
Example#2892 - imagefilledpolygon example
Example#2893 - imagefilledrectangle usage
Example#2894 - Filling an ellipse with a color
Example#2895 - imagefilter grayscale example
Example#2896 - imagefilter brightness example
Example#2897 - imagefilter colorize example
Example#2898 - imagefilter negate example
Example#2899 - imagefilter pixelate example
Example#2900 - imagefilter scatter example
Example#2901 - Flips an image vertically
Example#2902 - Flips the image horizontally
Example#2903 - Using imagefontheight on built-in fonts
Example#2904 - Using imagefontheight together with imageloadfont
Example#2905 - Using imagefontwidth on built-in fonts
Example#2906 - Using imagefontwidth together with imageloadfont
Example#2907 - imageftbbox example
Example#2908 - imagefttext example
Example#2909 - imagegammacorrect usage
Example#2910 - Outputting a GD image
Example#2911 - Saving a GD image
Example#2912 - Outputting a GD2 image
Example#2913 - Saving a GD2 image
Example#2914 - imagegetclip example
Example#2915 - Outputting an image using imagegif
Example#2916 - Converting a PNG image to GIF using imagegif
Example#2917 - imagegrabscreen example
Example#2918 - imagegrabwindow example
Example#2919 - Turn on interlacing using imageinterlace
Example#2920 - Simple detection of true color image instances using imageistruecolor
Example#2921 - Outputting a JPEG image to the browser
Example#2922 - Saving a JPEG image to a file
Example#2923 - Outputting the image at 75% quality to the browser
Example#2924 - imagelayereffect example
Example#2925 - Drawing a thick line
Example#2926 - imageloadfont usage example
Example#2927 - imageopenpolygon example
Example#2928 - imagepalettecopy example
Example#2929 - Converts any image object to true color
Example#2930 - imagepolygon example
Example#2931 - Simple imagerectangle example
Example#2932 - Setting and getting the resolution of an image
Example#2933 - Rotate an image 180 degrees
Example#2934 - Basic imagesavealpha Usage
Example#2935 - imagesetbrush example
Example#2936 - imagesetinterpolation example
Example#2937 - imagesetpixel example
Example#2938 - imagesetstyle example
Example#2939 - imagesetthickness example
Example#2940 - imagesettile example
Example#2941 - imagestring example
Example#2942 - imagestringup example
Example#2943 - Using imagesx
Example#2944 - Using imagesy
Example#2945 - Converting a true color image to a palette-based image
Example#2946 - imagettfbbox example
Example#2947 - imagettftext example
Example#2948 - Checking for PNG support
Example#2949 - Outputting a WBMP image
Example#2950 - Saving the WBMP image
Example#2951 - Outputting the image with a different foreground
Example#2952 - Saving an WebP file
Example#2953 - Saving an XBM file
Example#2954 - Saving an XBM file with a different foreground color
Example#2955 - Embedding IPTC data into a JPEG
Example#2956 - iptcparse() used together with getimagesize
Example#2957 - jpeg2wbmp example
Example#2958 - png2wbmp example
Example#2959 - Gmagick Example
Example#2960 - Gmagick::despeckleimage example
Example#2961 - Gmagick::setCompressionQuality
Example#2962 - Creating a thumbnail in Imagick
Example#2963 - Make a thumbnail of all JPG files in a directory
Example#2964 - Creating a reflection of an image
Example#2965 - Filling text with gradient
Example#2966 - Read in GIF image and resize all frames
Example#2967 - Create a PHP logo
Example#2968 - Using Imagick::adaptiveBlurImage:
Example#2969 - Using Imagick::adaptiveResizeImage
Example#2970 - A Imagick::adaptiveSharpenImage example
Example#2971 - Imagick::adaptiveThresholdImage
Example#2972 - Imagick::addNoiseImage
Example#2973 - Imagick::affineTransformImage
Example#2974 - Using Imagick::annotateImage:
Example#2975 - Imagick::appendImages example
Example#2976 - Imagick::autoLevelImage
Example#2977 - Imagick::blackThresholdImage
Example#2978 - Imagick::blueShiftImage
Example#2979 - Using Imagick::blurImage:
Example#2980 - Imagick::borderImage
Example#2981 - Imagick::brightnessContrastImage
Example#2982 - Imagick::charcoalImage
Example#2983 - Using Imagick::chopImage:
Example#2984 - Imagick object cloning in different versions of imagick
Example#2985 - Using Imagick::clutImage:
Example#2986 - Imagick::colorizeImage
Example#2987 - Imagick::colorMatrixImage
Example#2988 - Using Imagick::commentImage:
Example#2989 - Using Imagick::compareImageLayers
Example#2990 - Using Imagick::compareImages:
Example#2991 - Using Imagick::compositeImage:
Example#2992 - Imagick::contrastImage
Example#2993 - Imagick::convolveImage
Example#2994 - Imagick::cropImage
Example#2995 - Imagick::deskewImage
Example#2996 - Imagick::despeckleImage
Example#2997 - Using Imagick::distortImage:
Example#2998 - Imagick::edgeImage
Example#2999 - Imagick::embossImage
Example#3000 - Imagick::enhanceImage
Example#3001 - Imagick::equalizeImage
Example#3002 - Using Imagick::evaluateImage
Example#3003 - Using Imagick::exportImagePixels
Example#3004 - Imagick::filter
Example#3005 - Imagick::flipImage
Example#3006 - Imagick::floodfillPaintImage example
Example#3007 - Imagick::flopImage
Example#3008 - Imagick::forwardFourierTransformImage
Example#3009 - Imagick::frameImage
Example#3010 - Create a sinusoidal gradient
Example#3011 - Create a gradient from the polynomial (4x^2 - 4x + 1)
Example#3012 - Create a complex gradient from the polynomial (4x^2 - 4x^2 + 1) modulated by a sinusoidal gradient
Example#3013 - Imagick::fxImage
Example#3014 - Imagick::gammaImage
Example#3015 - Imagick::gaussianBlurImage
Example#3016 - Using Imagick::getImageGeometry
Example#3017 - Generates Imagick::getImageHistogram
Example#3018 - Using Imagick::getImageLength:
Example#3019 - Using Imagick::getImageProperties:
Example#3020 - Using Imagick::getImageProperty:
Example#3021 - Using Imagick::getIteratorIndex:
Example#3022 - Imagick::getPixelIterator
Example#3023 - Imagick::getPixelRegionIterator example
Example#3024 - Getting the size of a raw RGB image set at 200x400, after scaling to 400x800 (compared to width / height)
Example#3025 - Imagick::haldClutImage
Example#3026 - Imagick::identifyFormat
Example#3027 - Example Result Format
Example#3028 - Imagick::implodeImage
Example#3029 - Imagick::importImagePixels example
Example#3030 - Imagick::levelImage
Example#3031 - Imagick::linearStretchImage
Example#3032 - Imagick::magnifyImage
Example#3033 - Imagick::medianFilterImage
Example#3034 - Imagick::mergeImageLayers
Example#3035 - Imagick::modulateImage
Example#3036 - Convolve Imagick::morphology
Example#3037 - Correlate Imagick::morphology
Example#3038 - Erode Imagick::morphology
Example#3039 - Erode Intensity Imagick::morphology
Example#3040 - Dilate Imagick::morphology
Example#3041 - Dilate intensity Imagick::morphology
Example#3042 - Distance with Chebyshev kernel Imagick::morphology
Example#3043 - Distance with Manhattan kernel Imagick::morphology
Example#3044 - Distance with ocatagonal kernel Imagick::morphology
Example#3045 - Distance with Euclidean kernel Imagick::morphology
Example#3046 - Edge Imagick::morphology
Example#3047 - Open Imagick::morphology
Example#3048 - Open intensity Imagick::morphology
Example#3049 - Close Imagick::morphology
Example#3050 - Close Intensity Imagick::morphology
Example#3051 - Smooth Imagick::morphology
Example#3052 - Edge in Imagick::morphology
Example#3053 - Edge out Imagick::morphology
Example#3054 - 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#3055 - The 'BottomHat' method, also known as 'Black TopHat' is the pixels that a Closing of the shape adds to the image. That is the pixels that were used to fill in the 'holes', 'gaps', and 'bridges'. Imagick::morphology
Example#3056 - Hit and Miss Imagick::morphology
Example#3057 - Thinning Imagick::morphology
Example#3058 - Thicken Imagick::morphology
Example#3059 - Thick to generate a convex hull Imagick::morphology
Example#3060 - Iterative morphology Imagick::morphology
Example#3061 - Helper function to get an image silhouette Imagick::morphology
Example#3062 - Imagick::motionBlurImage
Example#3063 - Imagick::negateImage
Example#3064 - Using Imagick::newImage:
Example#3065 - Imagick::newPseudoImage
Example#3066 - Imagick::normalizeImage
Example#3067 - Imagick::oilPaintImage
Example#3068 - Using Imagick::optimizeImageLayers
Example#3069 - Imagick::orderedPosterizeImage
Example#3070 - Using Imagick::pingImageBlob
Example#3071 - Using Imagick::pingImageFile
Example#3072 - A Imagick::polaroidImage example
Example#3073 - Imagick::posterizeImage
Example#3074 - Imagick::quantizeImage
Example#3075 - Using Imagick::queryFontMetrics:
Example#3076 - Imagick::queryFonts
Example#3077 - Imagick::queryFormats
Example#3078 - Imagick::radialBlurImage
Example#3079 - Imagick::raiseImage
Example#3080 - Imagick::randomThresholdImage
Example#3081 - Imagick::readImageBlob
Example#3082 - Imagick::recolorImage
Example#3083 - Imagick::reduceNoiseImage
Example#3084 - Imagick::resampleImage
Example#3085 - Imagick::resizeImage
Example#3086 - Imagick::rollImage
Example#3087 - Imagick::rotateImage
Example#3088 - Imagick::rotationalBlurImage
Example#3089 - Using Imagick::roundCorners:
Example#3090 - Imagick::scaleImage
Example#3091 - Imagick::segmentImage
Example#3092 - Imagick::selectiveBlurImage
Example#3093 - Imagick::separateImageChannel
Example#3094 - Imagick::sepiaToneImage
Example#3095 - Imagick::setCompressionQuality
Example#3096 - A Imagick::setFont example
Example#3097 - A Imagick::setImage example
Example#3098 - Imagick::setImageArtifact
Example#3099 - Imagick::setImageBias
Example#3100 - Imagick::setImageClipMask
Example#3101 - Imagick::setImageCompressionQuality
Example#3102 - Modify animated Gif with Imagick::setImageDelay
Example#3103 - Basic Imagick::setImageIterations usage
Example#3104 - A Imagick::setImageOpacity example
Example#3105 - Imagick::setImageOrientation
Example#3106 - Using Imagick::setImageProperty:
Example#3107 - Imagick::setImageResolution
Example#3108 - Modify animated Gif with Imagick::setImageTicksPerSecond
Example#3109 - Using Imagick::setIteratorIndex:
Example#3110 - Attempt to reach '$extent' sizeImagick::setOption
Example#3111 - Imagick::setOption
Example#3112 - Imagick::setOption
Example#3113 - A Imagick::setPointSize example
Example#3114 - Imagick::setProgressMonitor
Example#3115 - Imagick::setSamplingFactors
Example#3116 - Imagick::shadeImage
Example#3117 - Imagick::shadowImage
Example#3118 - Imagick::sharpenImage
Example#3119 - Imagick::shaveImage
Example#3120 - Imagick::shearImage
Example#3121 - Create a gradient image using Imagick::sigmoidalContrastImage suitable for blending two images together smoothly, with the blending defined by $contrast and $the midpoint
Example#3122 - Imagick::sketchImage
Example#3123 - Imagick::smushImages
Example#3124 - Imagick::solarizeImage
Example#3125 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
Example#3126 - SPARSECOLORMETHOD_BILINEAR Imagick::sparseColorImage
Example#3127 - SPARSECOLORMETHOD_SPEPARDS Imagick::sparseColorImage
Example#3128 - SPARSECOLORMETHOD_VORONOI Imagick::sparseColorImage
Example#3129 - SPARSECOLORMETHOD_BARYCENTRIC Imagick::sparseColorImage
Example#3130 - createGradientImage is used by other examples. Imagick::sparseColorImage
Example#3131 - Imagick::spliceImage
Example#3132 - Imagick::spreadImage
Example#3133 - Imagick::statisticImage
Example#3134 - Imagick::subImageMatch
Example#3135 - Imagick::swirlImage
Example#3136 - Imagick::textureImage
Example#3137 - Imagick::thresholdImage
Example#3138 - Imagick::thumbnailImage
Example#3139 - Imagick::tintImage
Example#3140 - Using Imagick::transformImage:
Example#3141 - Imagick::transformImageColorspace example
Example#3142 - Imagick::transparentPaintImage
Example#3143 - Imagick::transposeImage
Example#3144 - Imagick::transverseImage
Example#3145 - Using Imagick::trimImage:
Example#3146 - Imagick::uniqueImageColors
Example#3147 - Imagick::unsharpMaskImage
Example#3148 - Imagick::vignetteImage
Example#3149 - WaveImage can be quite slow Imagick::waveImage
Example#3150 - Imagick::whiteThresholdImage
Example#3151 - ImagickDraw::affine example
Example#3152 - ImagickDraw::arc example
Example#3153 - ImagickDraw::bezier example
Example#3154 - ImagickDraw::circle example
Example#3155 - ImagickDraw::composite example
Example#3156 - ImagickDraw::ellipse example
Example#3157 - ImagickDraw::line example
Example#3158 - ImagickDraw::matte example
Example#3159 - ImagickDraw::pathCurveToQuadraticBezierAbsolute example
Example#3160 - ImagickDraw::pathCurveToQuadraticBezierSmoothAbsolute example
Example#3161 - ImagickDraw::pathCurveToQuadraticBezierSmoothRelative example
Example#3162 - ImagickDraw::pathStart example
Example#3163 - ImagickDraw::point example
Example#3164 - ImagickDraw::polygon example
Example#3165 - ImagickDraw::polyline example
Example#3166 - ImagickDraw::popDefs example
Example#3167 - ImagickDraw::push example
Example#3168 - ImagickDraw::pushPattern example
Example#3169 - ImagickDraw::rectangle example
Example#3170 - ImagickDraw::rotate example
Example#3171 - ImagickDraw::roundRectangle example
Example#3172 - ImagickDraw::scale example
Example#3173 - ImagickDraw::setClipPath example
Example#3174 - ImagickDraw::setClipRule example
Example#3175 - ImagickDraw::setClipUnits example
Example#3176 - ImagickDraw::setFillAlpha example
Example#3177 - ImagickDraw::setFillColor
Example#3178 - ImagickDraw::setFillOpacity
Example#3179 - ImagickDraw::setFillRule example
Example#3180 - ImagickDraw::setFont example
Example#3181 - ImagickDraw::setFontFamily example
Example#3182 - ImagickDraw::setFontSize example
Example#3183 - ImagickDraw::setFontStretch example
Example#3184 - ImagickDraw::setFontStyle example
Example#3185 - ImagickDraw::setFontWeight example
Example#3186 - ImagickDraw::setGravity example
Example#3187 - ImagickDraw::setStrokeAlpha example
Example#3188 - ImagickDraw::setStrokeAntialias example
Example#3189 - ImagickDraw::setStrokeColor example
Example#3190 - ImagickDraw::setStrokeDashArray example
Example#3191 - ImagickDraw::setStrokeDashOffset example
Example#3192 - ImagickDraw::setStrokeLineCap example
Example#3193 - ImagickDraw::setStrokeLineJoin example
Example#3194 - ImagickDraw::setStrokeMiterLimit example
Example#3195 - ImagickDraw::setStrokeOpacity example
Example#3196 - ImagickDraw::setStrokeWidth example
Example#3197 - ImagickDraw::setTextAlignment example
Example#3198 - ImagickDraw::setTextAntialias example
Example#3199 - ImagickDraw::setTextDecoration example
Example#3200 - ImagickDraw::setTextUnderColor example
Example#3201 - ImagickDraw::setVectorGraphics example
Example#3202 - ImagickDraw::setViewBox example
Example#3203 - ImagickDraw::skewX example
Example#3204 - ImagickDraw::skewY example
Example#3205 - ImagickDraw::translate example
Example#3206 - ImagickKernel::addKernel
Example#3207 - ImagickKernel::addUnityKernel
Example#3208 - ImagickKernel::addUnityKernel
Example#3209 - ImagickKernel::fromBuiltin
Example#3210 - ImagickKernel::fromMatrix
Example#3211 - ImagickKernel::getMatrix
Example#3212 - ImagickKernel::scale
Example#3213 - ImagickKernel::separate
Example#3214 - ImagickPixel::construct
Example#3215 - Basic Imagick::getColor usage
Example#3216 - Basic Imagick::getColorAsString usage
Example#3217 - ImagickPixel getColorCount
Example#3218 - Basic Imagick::getColorValue usage
Example#3219 - ImagickPixel::getColorValueQuantum
Example#3220 - Basic Imagick::getHSL example
Example#3221 - ImagickPixel::isSimilar
Example#3222 - ImagickPixel::setColor
Example#3223 - Basic Imagick::setColorValue usage
Example#3224 - ImagickPixel::setColorValueQuantum
Example#3225 - Use ImagickPixel::setHSL to modify a color
Example#3226 - ImagickPixelIterator::clear
Example#3227 - ImagickPixelIterator::construct
Example#3228 - ImagickPixelIterator::getNextIteratorRow
Example#3229 - ImagickPixelIterator::resetIterator
Example#3230 - ImagickPixelIterator::setIteratorRow
Example#3231 - imap_append example
Example#3232 - imap_check example
Example#3233 - imap_createmailbox example
Example#3234 - imap_delete example
Example#3235 - imap_fetch_overview example
Example#3236 - imap_gc example
Example#3237 - imap_get_quota example
Example#3238 - imap_get_quota 4.3 or greater example
Example#3239 - imap_get_quotaroot example
Example#3240 - imap_getacl example
Example#3241 - imap_getmailboxes example
Example#3242 - imap_is_open example
Example#3243 - imap_list example
Example#3244 - imap_mail_compose example
Example#3245 - imap_mailboxmsginfo example
Example#3246 - imap_mime_header_decode example
Example#3247 - Different use of imap_open
Example#3248 - imap_open example
Example#3249 - imap_ping Example
Example#3250 - imap_reopen example
Example#3251 - imap_rfc822_parse_adrlist example
Example#3252 - imap_rfc822_write_address example
Example#3253 - imap_search example
Example#3254 - imap_set_quota example
Example#3255 - imap_setflag_full example
Example#3256 - imap_status example
Example#3257 - imap_thread Example
Example#3258 - imap_timeout example
Example#3259 - Basic imap_utf8 Usage
Example#3260 - Calculating the hash and subscribing a user
Example#3261 - Sending mail.
Example#3262 - Sending mail with extra headers.
Example#3263 - Sending mail with extra headers as array
Example#3264 - Sending mail with an additional command line parameter.
Example#3265 - Sending HTML email
Example#3266 - mailparse_determine_best_xfer_encoding example
Example#3267 - mailparse_rfc822_parse_addresses example
Example#3268 - mailparse_stream_encode example
Example#3269 - mailparse_uudecode_all example
Example#3270 - bcadd example
Example#3271 - bcceil example
Example#3272 - bccomp example
Example#3273 - bcdiv example
Example#3274 - bcdivmod example
Example#3275 - bcdivmod with decimals
Example#3276 - bcfloor example
Example#3277 - bcmod example
Example#3278 - bcmod with decimals
Example#3279 - bcmul example
Example#3280 - bcmul scale example
Example#3281 - bcpow example
Example#3282 - bcpow scale example
Example#3283 - bcround examples
Example#3284 - Example of using bcround with different precision values
Example#3285 - Example of using bcround with different mode values
Example#3286 - Example of using bcround with different mode values when specifying precision
Example#3287 - bcscale example
Example#3288 - bcsqrt example
Example#3289 - bcsub example
Example#3290 - BcMath\Number::add example when scale is not specified
Example#3291 - BcMath\Number::add example of explicitly specifying scale
Example#3292 - BcMath\Number::ceil example
Example#3293 - BcMath\Number::compare example when scale is not specified
Example#3294 - BcMath\Number::compare example of explicitly specifying scale
Example#3295 - BcMath\Number::__construct example
Example#3296 - BcMath\Number::div example when scale is not specified
Example#3297 - BcMath\Number::div example of explicitly specifying scale
Example#3298 - BcMath\Number::div example of expansioning BcMath\Number::scale of result object
Example#3299 - BcMath\Number::divmod example when scale is not specified
Example#3300 - BcMath\Number::divmod example of explicitly specifying scale
Example#3301 - BcMath\Number::floor example
Example#3302 - BcMath\Number::mod example when scale is not specified
Example#3303 - BcMath\Number::mod example of explicitly specifying scale
Example#3304 - BcMath\Number::mul example when scale is not specified
Example#3305 - BcMath\Number::mul example of explicitly specifying scale
Example#3306 - BcMath\Number::pow example when scale is not specified
Example#3307 - BcMath\Number::pow example of explicitly specifying scale
Example#3308 - BcMath\Number::powmod example when scale is not specified
Example#3309 - BcMath\Number::powmod example of explicitly specifying scale
Example#3310 - BcMath\Number::round example
Example#3311 - Example of using BcMath\Number::round with different precision values
Example#3312 - Example of using BcMath\Number::round with different mode values
Example#3313 - Example of using BcMath\Number::round with different mode values when specifying precision
Example#3314 - BcMath\Number::sqrt example
Example#3315 - BcMath\Number::sub example when scale is not specified
Example#3316 - BcMath\Number::sub example of explicitly specifying scale
Example#3317 - Factorial function using GMP
Example#3318 - gmp_abs example
Example#3319 - gmp_add example
Example#3320 - gmp_and example
Example#3321 - gmp_clrbit example
Example#3322 - gmp_cmp example
Example#3323 - gmp_com example
Example#3324 - gmp_div_q example
Example#3325 - Division of GMP numbers
Example#3326 - gmp_div_r example
Example#3327 - gmp_divexact example
Example#3328 - gmp_export example
Example#3329 - gmp_fact example
Example#3330 - gmp_gcd example
Example#3331 - Solving a linear Diophantine equation
Example#3332 - gmp_hamdist example
Example#3333 - gmp_import example
Example#3334 - Creating GMP number
Example#3335 - gmp_intval example
Example#3336 - gmp_invert example
Example#3337 - gmp_jacobi example
Example#3338 - gmp_legendre example
Example#3339 - gmp_mod example
Example#3340 - gmp_mul example
Example#3341 - gmp_neg example
Example#3342 - gmp_nextprime example
Example#3343 - gmp_or example
Example#3344 - gmp_perfect_square example
Example#3345 - gmp_popcount example
Example#3346 - gmp_pow example
Example#3347 - gmp_powm example
Example#3348 - gmp_prob_prime example
Example#3349 - gmp_random example
Example#3350 - gmp_random_bits example
Example#3351 - gmp_random_range example
Example#3352 - gmp_random_seed example
Example#3353 - gmp_scan0 example
Example#3354 - gmp_scan1 example
Example#3355 - gmp_setbit example - 0 index
Example#3356 - gmp_setbit example - 1 index
Example#3357 - gmp_setbit example - clearing a bit
Example#3358 - gmp_sign example
Example#3359 - gmp_sqrt example
Example#3360 - gmp_sqrtrem example
Example#3361 - Converting a GMP number to a string
Example#3362 - gmp_sub example
Example#3363 - gmp_testbit example
Example#3364 - gmp_xor example
Example#3365 - abs example
Example#3366 - base_convert example
Example#3367 - bindec example
Example#3368 - bindec interprets input as unsigned integers
Example#3369 - ceil example
Example#3370 - cos example
Example#3371 - decbin example
Example#3372 - dechex example
Example#3373 - dechex example with large integers
Example#3374 - decoct example
Example#3375 - deg2rad example
Example#3376 - exp example
Example#3377 - Using fdiv
Example#3378 - floor example
Example#3379 - Using fmod
Example#3380 - fpow example
Example#3381 - hexdec example
Example#3382 - hexdec with Invalid Characters
Example#3383 - intdiv example
Example#3384 - intdiv Example With Invalid Divisor
Example#3385 - is_finite example
Example#3386 - is_infinite example
Example#3387 - is_nan example
Example#3388 - Example uses of max
Example#3389 - Example uses of min
Example#3390 - octdec example
Example#3391 - pi example
Example#3392 - Some examples of pow
Example#3393 - Examples of pow With GMP Extension Object
Example#3394 - rad2deg example
Example#3395 - round examples
Example#3396 - How precision affects a float
Example#3397 - mode examples
Example#3398 - mode with precision examples
Example#3399 - Example of using RoundingMode
Example#3400 - sin example
Example#3401 - sqrt example
Example#3402 - tan example
Example#3403 - Evaluating a FDF document
Example#3404 - Adding JavaScript code to a FDF
Example#3405 - Populating a PDF document
Example#3406 - Storing an uploaded file
Example#3407 - Detecting all fieldnames in a FDF
Example#3408 - Accessing the form data
Example#3409 - Accessing the form data
Example#3410 - Retrieving FDF as a string
Example#3411 - Passing FDF data to a second form
Example#3412 - gnupg clearsign example (procedural)
Example#3413 - gnupg clearsign example (OO)
Example#3414 - keylistiterator
Example#3415 - Procedural gnupg_adddecryptkey example
Example#3416 - OO gnupg_adddecryptkey example
Example#3417 - Procedural gnupg_addencryptkey example
Example#3418 - OO gnupg_addencryptkey example
Example#3419 - Procedural gnupg_addsignkey example
Example#3420 - OO gnupg_addsignkey example
Example#3421 - Procedural gnupg_cleardecryptkeys example
Example#3422 - OO gnupg_cleardecryptkeys example
Example#3423 - Procedural gnupg_clearencryptkeys example
Example#3424 - OO gnupg_clearencryptkeys example
Example#3425 - Procedural gnupg_clearsignkeys example
Example#3426 - OO gnupg_clearsignkeys example
Example#3427 - Procedural gnupg_decrypt example
Example#3428 - OO gnupg_decrypt example
Example#3429 - Procedural gnupg_decryptverify example
Example#3430 - OO gnupg_decryptverify example
Example#3431 - Procedural gnupg_deletekey example
Example#3432 - OO gnupg_deletekey example
Example#3433 - Procedural gnupg_encrypt example
Example#3434 - OO gnupg_encrypt example
Example#3435 - Procedural gnupg_encryptsign example
Example#3436 - OO gnupg_encryptsign example
Example#3437 - Procedural gnupg_export example
Example#3438 - OO gnupg_export example
Example#3439 - Procedural gnupg_getengineinfo example
Example#3440 - OO gnupg_getengineinfo example
Example#3441 - Procedural gnupg_geterror example
Example#3442 - OO gnupg_geterror example
Example#3443 - Procedural gnupg_geterrorinfo example
Example#3444 - OO gnupg_geterrorinfo example
Example#3445 - Procedural gnupg_getprotocol example
Example#3446 - OO gnupg_getprotocol example
Example#3447 - Procedural gnupg_gettrustlist example
Example#3448 - OO gnupg_gettrustlist example
Example#3449 - Procedural gnupg_import example
Example#3450 - OO gnupg_import example
Example#3451 - Procedural gnupg_init example with default setting
Example#3452 - Procedural gnupg_init example with overriden file name and home dir
Example#3453 - OO gnupg initializer example with default setting
Example#3454 - OO gnupg initializer example with overriden file name and home dir
Example#3455 - Procedural gnupg_keyinfo example
Example#3456 - OO gnupg_keyinfo example
Example#3457 - Procedural gnupg_listsignatures example
Example#3458 - OO gnupg_listsignatures example
Example#3459 - Procedural gnupg_setarmor example
Example#3460 - OO gnupg_setarmor example
Example#3461 - Procedural gnupg_seterrormode example
Example#3462 - OO gnupg_seterrormode example
Example#3463 - Procedural gnupg_setsignmode example
Example#3464 - OO gnupg_setsignmode example
Example#3465 - Procedural gnupg_sign example
Example#3466 - OO gnupg_sign example
Example#3467 - Procedural gnupg_verify example
Example#3468 - OO gnupg_verify example
Example#3469 - Creating and using a pattern
Example#3470 - Creating and using a template
Example#3471 - Hyphennate a text
Example#3472 - Drawing a rectangle
Example#3473 - Creating and using a spot color
Example#3474 - Rotation of the coordinate system
Example#3475 - Placing text at a given position
Example#3476 - Drawing a dashed line
Example#3477 - Translation of the coordinate system
Example#3478 - A rpmdbinfo example
Example#3479 - Searching for the package owning a file
Example#3480 - A rpmdefine example
Example#3481 - A rpmexpand example
Example#3482 - A rpmexpandnumeric example
Example#3483 - A rpminfo example
Example#3484 - example
Example#3485 - example
Example#3486 - example
Example#3487 - example
Example#3488 - example
Example#3489 - example
Example#3490 - example
Example#3491 - example
Example#3492 - example
Example#3493 - example
Example#3494 - example
Example#3495 - example
Example#3496 - example
Example#3497 - setColumn example
Example#3498 - setRow example
Example#3499 - Align style example
Example#3500 - Bold style example
Example#3501 - Italic style example
Example#3502 - Underline style example
Example#3503 - Incorrect requests
Example#3504 - Calling request from a request callback
Example#3505 - Calling request from a request callback
Example#3506 - Using eio with libevent
Example#3507 - Cancelling a request
Example#3508 - Calling eio_chmod
Example#3509 - Making a custom request
Example#3510 - Grouping requests
Example#3511 - Using eio with libevent extension
Example#3512 - Using eio with event extension
Example#3513 - eio_cancel example
Example#3514 - eio_custom example
Example#3515 - eio_event_loop example
Example#3516 - eio_lstat example
Example#3517 - Using eio with libevent
Example#3518 - eio_grp example
Example#3519 - Grouping requests
Example#3520 - eio_link example
Example#3521 - eio_lstat example
Example#3522 - eio_mkdir example
Example#3523 - eio_mknod example
Example#3524 - eio_nreqs example
Example#3525 - eio_open example
Example#3526 - eio_poll example
Example#3527 - eio_read example
Example#3528 - eio_readdir example
Example#3529 - eio_readlink example
Example#3530 - eio_realpath example
Example#3531 - eio_rename example
Example#3532 - eio_rmdir example
Example#3533 - eio_stat example
Example#3534 - eio_statvfs example
Example#3535 - eio_symlink example
Example#3536 - Simple timers
Example#3537 - Periodic timer. Tick each 10.5 seconds
Example#3538 - Periodic timer. Use reschedule callback
Example#3539 - Periodic timer. Tick every 10.5 seconds starting at now
Example#3540 - Wait until STDIN is readable
Example#3541 - Use some async I/O to access a socket
Example#3542 - Embedding one loop into another
Example#3543 - Embedding loop created with kqueue backend into the default loop
Example#3544 - Handle SIGTERM signal
Example#3545 - Monitor changes of /var/log/messages
Example#3546 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
Example#3547 - Process status changes
Example#3548 - Using reschedule callback
Example#3549 - Embedding loop created with kqueue backend into the default loop
Example#3550 - Embedding one loop into another
Example#3551 - Embedding loop created with kqueue backend into the default loop
Example#3552 - Embedding loop created with kqueue backend into the default loop
Example#3553 - Periodic timer. Use reschedule callback
Example#3554 - Periodic timer. Tick every 10.5 seconds starting at now
Example#3555 - Hourly watcher
Example#3556 - Handle SIGTERM signal
Example#3557 - Monitor changes of /var/log/messages
Example#3558 - Monitor changes of /var/log/messages
Example#3559 - Simple timers
Example#3560 - Monotor changes of /var/log/messages. Avoid missing updates by means of one second delay
Example#3561 - Register an I/O watcher for some UDP socket but do not keep the event loop from running just because of that watcher.
Example#3562 - Expect Usage Example
Example#3563 - Another Expect Usage Example
Example#3564 - expect_expectl example
Example#3565 - expect_popen example
Example#3566 - Process Control Example
Example#3567 - pcntl_fork example
Example#3568 - pcntl_get_last_error example
Example#3569 - pcntl_rfork example
Example#3570 - pcntl_signal example
Example#3571 - pcntl_signal_dispatch example
Example#3572 - pcntl_signal_get_handler example
Example#3573 - pcntl_sigprocmask example
Example#3574 - pcntl_sigwaitinfo example
Example#3575 - pcntl_strerror example
Example#3576 - posix_access example
Example#3577 - posix_ctermid example
Example#3578 - posix_eaccess example
Example#3579 - posix_fpathconf example
Example#3580 - posix_get_last_error example
Example#3581 - posix_getcwd example
Example#3582 - posix_getegid example
Example#3583 - posix_geteuid example
Example#3584 - posix_getgid example
Example#3585 - Example use of posix_getgrgid
Example#3586 - Example use of posix_getgrnam
Example#3587 - Example use of posix_getgroups
Example#3588 - Example use of posix_getlogin
Example#3589 - Example use of posix_getpgid
Example#3590 - Example use of posix_getpid
Example#3591 - Example use of posix_getppid
Example#3592 - Example use of posix_getpwnam
Example#3593 - Example use of posix_getpwuid
Example#3594 - Example use of posix_getrlimit
Example#3595 - Example use of posix_getsid
Example#3596 - Example use of posix_getuid
Example#3597 - A posix_mknod example
Example#3598 - posix_pathconf example
Example#3599 - posix_setegid example
Example#3600 - posix_setgid example
Example#3601 - posix_setuid example
Example#3602 - posix_strerror example
Example#3603 - posix_sysconf example
Example#3604 - Example use of posix_times
Example#3605 - Example use of posix_uname
Example#3606 - escapeshellarg example
Example#3607 - escapeshellcmd example
Example#3608 - An exec example
Example#3609 - Using proc_nice to set the process priority to high
Example#3610 - A proc_open example
Example#3611 - proc_open quirk on Windows
Example#3612 - A shell_exec example
Example#3613 - system example
Example#3614 - Example showing Future as return value
Example#3615 - Example showing Future as synchronization point
Example#3616 - Fetch a chunk of the property table
Example#3617 - Counting the properties of an object
Example#3618 - Runtime inheritance
Example#3619 - Detect the state of the referenced object
Example#3620 - Detect the state of the referenced object
Example#3621 - Merging into the property table of a threaded object
Example#3622 - Notifications and Waiting
Example#3623 - Notifications and Waiting
Example#3624 - Popping the last item from the property table of a threaded object
Example#3625 - Shifting the first item from the property table of a threaded object
Example#3626 - Synchronizing
Example#3627 - Notifications and Waiting
Example#3628 - Return the identity of the Thread or Process that created the referenced Thread
Example#3629 - Return the currently executing Thread
Example#3630 - Return the identity of the currently executing Thread
Example#3631 - Return the identity of the referenced Thread
Example#3632 - Detect the state of the referenced Thread
Example#3633 - Tell if the referenced Thread was started
Example#3634 - Join with the referenced Thread
Example#3635 - Starting Threads
Example#3636 - A basic example of Worker::collect
Example#3637 - A basic example of Worker::getStacked
Example#3638 - Detect the state of a worker
Example#3639 - Shutdown the referenced worker
Example#3640 - Stacking a task for execution onto a worker
Example#3641 - Removing objects from the stack of Workers
Example#3642 - A basic example of Pool::collect
Example#3643 - Creating Pools
Example#3644 - Shutting down a pool
Example#3645 - Submitting Tasks
Example#3646 - Submitting tasks to a specific worker
Example#3647 - New immutability semantics of Threaded
Example#3648 - Volatile use-case
Example#3649 - Shared Memory Operations Overview
Example#3650 - Closing shared memory block
Example#3651 - Deleting shared memory block
Example#3652 - Create a new shared memory block
Example#3653 - Reading shared memory block
Example#3654 - Getting the size of the shared memory block
Example#3655 - Writing to shared memory block
Example#3656 - SyncMutex::__construct named mutex with lock timeout example
Example#3657 - SyncMutex::__construct unnamed mutex example
Example#3658 - SyncMutex::lock example
Example#3659 - SyncMutex::unlock example
Example#3660 - SyncSemaphore::__construct example
Example#3661 - SyncSemaphore::lock example
Example#3662 - SyncSemaphore::unlock example
Example#3663 - SyncEvent::__construct example
Example#3664 - SyncEvent::fire example
Example#3665 - SyncEvent::reset example
Example#3666 - SyncEvent::wait example
Example#3667 - SyncReaderWriter::__construct example
Example#3668 - SyncReaderWriter::readlock example
Example#3669 - SyncReaderWriter::readunlock example
Example#3670 - SyncReaderWriter::writelock example
Example#3671 - SyncReaderWriter::writeunlock example
Example#3672 - SyncSharedMemory::__construct example
Example#3673 - SyncSharedMemory::first example
Example#3674 - SyncSharedMemory::__construct example
Example#3675 - SyncSharedMemory::size example
Example#3676 - SyncSharedMemory::write example
Example#3677 - A geoip_asnum_by_name example
Example#3678 - A geoip_continent_code_by_name example
Example#3679 - A geoip_country_code_by_name example
Example#3680 - A geoip_country_code3_by_name example
Example#3681 - A geoip_country_name_by_name example
Example#3682 - A geoip_database_info example
Example#3683 - A geoip_db_avail example
Example#3684 - A geoip_db_filename example
Example#3685 - A geoip_db_get_all_info example
Example#3686 - A geoip_db_get_all_info example
Example#3687 - A geoip_domain_by_name example
Example#3688 - A geoip_id_by_name example
Example#3689 - A geoip_isp_by_name example
Example#3690 - A geoip_netspeedcell_by_name example
Example#3691 - A geoip_org_by_name example
Example#3692 - A geoip_record_by_name example
Example#3693 - A geoip_region_by_name example
Example#3694 - A geoip_region_name_by_code example using region code for US/Canada
Example#3695 - A geoip_region_name_by_code example using FIPS codes
Example#3696 - A geoip_setup_custom_directory example
Example#3697 - A geoip_time_zone_by_country_and_region example using region code for US/Canada
Example#3698 - A geoip_time_zone_by_country_and_region example using FIPS codes
Example#3699 - xor.data file
Example#3700 - Simple train
Example#3701 - Simple test
Example#3702 - fann_create_train_from_callback example
Example#3703 - fann_read_train_from_file example
Example#3704 - igbinary_serialize example
Example#3705 - JsonSerializable::jsonSerialize example returning an array
Example#3706 - JsonSerializable::jsonSerialize example returning an associative array
Example#3707 - JsonSerializable::jsonSerialize example returning an int
Example#3708 - JsonSerializable::jsonSerialize example returning a string
Example#3709 - json_decode examples
Example#3710 - Accessing invalid object properties
Example#3711 - common mistakes using json_decode
Example#3712 - depth errors
Example#3713 - json_decode of large integers
Example#3714 - A json_encode example
Example#3715 - A json_encode example showing some flags in use
Example#3716 - JSON_NUMERIC_CHECK option example
Example#3717 - Sequential versus non-sequential array example
Example#3718 - JSON_PRESERVE_ZERO_FRACTION option example
Example#3719 - json_last_error example
Example#3720 - json_last_error with json_encode
Example#3721 - json_last_error and JSON_THROW_ON_ERROR
Example#3722 - json_validate examples
Example#3723 - simdjson_decode examples
Example#3724 - Accessing invalid object properties
Example#3725 - common mistakes using simdjson_decode
Example#3726 - depth errors
Example#3727 - simdjson_decode of large integers
Example#3728 - simdjson_decode examples
Example#3729 - depth errors
Example#3730 - Lua::assignexample
Example#3731 - Lua::callexample
Example#3732 - Lua::evalexample
Example#3733 - Lua::registerCallbackexample
Example#3734 - LuaClosure::__invokeexample
Example#3735 - Execute some Lua code
Example#3736 - Calling a Lua function
Example#3737 - Profiling Lua code
Example#3738 - Loading code into Lua
Example#3739 - Manipulating the usage timer
Example#3740 - Registering PHP functions to call from Lua
Example#3741 - Calling a Lua function
Example#3742 - Calling a Lua function
Example#3743 - Using constant with Constants
Example#3744 - Using constant with Enum Cases (as of PHP 8.1.0)
Example#3745 - Defining Constants
Example#3746 - Constants with Reserved Names
Example#3747 - Checking Constants
Example#3748 - Checking Enum Cases (as of PHP 8.1.0)
Example#3749 - eval example - simple text merge
Example#3750 - Basic exit example
Example#3751 - exit example with a string
Example#3752 - Shutdown functions and destructors run regardless
Example#3753 - exit as a statement
Example#3754 - Listing all information about the users browser
Example#3755 - A __halt_compiler example
Example#3756 - highlight_string example
Example#3757 - hrtime usage
Example#3758 - A ignore_user_abort example
Example#3759 - pack example
Example#3760 - php_strip_whitespace example
Example#3761 - Basic sapi_windows_generate_ctrl_event Usage
Example#3762 - Basic sapi_windows_set_ctrl_handler Usage
Example#3763 - sapi_windows_vt100_support default state
Example#3764 - sapi_windows_vt100_support changing state
Example#3765 - Example usage of VT100 support enabled
Example#3766 - sleep example
Example#3767 - A sys_getloadavg example
Example#3768 - time_nanosleep example
Example#3769 - A time_sleep_until example
Example#3770 - uniqid Example
Example#3771 - unpack example
Example#3772 - unpack example with a repeater
Example#3773 - unpack example with unnamed keys
Example#3774 - usleep example
Example#3775 - Random Example
Example#3776 - mt_rand example
Example#3777 - rand example
Example#3778 - random_bytes example
Example#3779 - random_int example
Example#3780 - Random\Randomizer::__construct example
Example#3781 - Random\Randomizer::getBytes example
Example#3782 - Random\Randomizer::getBytesFromString example
Example#3783 - Generate a random code for multi-factor authentication
Example#3784 - Select from a string with a non-uniform distribution
Example#3785 - Random\Randomizer::getFloat example
Example#3786 - Random\Randomizer::getInt example
Example#3787 - Random\Randomizer::nextFloat example
Example#3788 - Incorrect scaling using an affine transformation
Example#3789 - Random\Randomizer::nextInt example
Example#3790 - Random\Randomizer::pickArrayKeys example
Example#3791 - Picking random values
Example#3792 - Random\Randomizer::__serialize example
Example#3793 - Random\Randomizer::shuffleArray example
Example#3794 - Random\Randomizer::shuffleBytes example
Example#3795 - Byte-wise shuffling breaks Unicode characters
Example#3796 - Random\Randomizer::__unserialize example
Example#3797 - Random\Engine::generate example
Example#3798 - Random\Engine\Mt19937::__construct example
Example#3799 - Random\Engine\Mt19937::__debugInfo example
Example#3800 - Random\Engine\Mt19937::__serialize example
Example#3801 - Random\Engine\Mt19937::__unserialize example
Example#3802 - Random\Engine\PcgOneseq128XslRr64::__construct example
Example#3803 - Deriving a seed from a string
Example#3804 - Random\Engine\PcgOneseq128XslRr64::__debugInfo example
Example#3805 - Random\Engine\PcgOneseq128XslRr64::jump example
Example#3806 - Randomizer methods may call the engine more than once
Example#3807 - Random\Engine\PcgOneseq128XslRr64::__serialize example
Example#3808 - Random\Engine\PcgOneseq128XslRr64::__unserialize example
Example#3809 - Random\Engine\Xoshiro256StarStar::__construct example
Example#3810 - Deriving a seed from a string
Example#3811 - Random\Engine\Xoshiro256StarStar::__debugInfo example
Example#3812 - Random\Engine\Xoshiro256StarStar::jump example
Example#3813 - Random\Engine\Xoshiro256StarStar::jumpLong example
Example#3814 - Random\Engine\Xoshiro256StarStar::__serialize example
Example#3815 - Random\Engine\Xoshiro256StarStar::__unserialize example
Example#3816 - Get and set base path
Example#3817 - Get and set logger
Example#3818 - Fast write log
Example#3819 - Fast count some type of log count value
Example#3820 - Acquisit some type of log list
Example#3821 - seaslog_get_author example
Example#3822 - seaslog_get_version example
Example#3823 - SeasLog::alert example
Example#3824 - SeasLog::analyzerCount example
Example#3825 - SeasLog::analyzerDetail example
Example#3826 - SeasLog::closeLoggerStream example
Example#3827 - SeasLog::__construct example
Example#3828 - SeasLog::critical example
Example#3829 - SeasLog::debug example
Example#3830 - SeasLog::__destruct example
Example#3831 - SeasLog::emergency example
Example#3832 - SeasLog::error example
Example#3833 - SeasLog::flushBuffer example
Example#3834 - SeasLog::getBasePath example
Example#3835 - SeasLog::getBuffer example
Example#3836 - SeasLog::getBufferEnabled example
Example#3837 - SeasLog::getDatetimeFormat example
Example#3838 - SeasLog::getLastLogger example
Example#3839 - SeasLog::getRequestID example
Example#3840 - SeasLog::getRequestVariable example
Example#3841 - SeasLog::info example
Example#3842 - SeasLog::log example
Example#3843 - SeasLog::notice example
Example#3844 - SeasLog::setBasePath example
Example#3845 - SeasLog::setDatetimeFormat example
Example#3846 - SeasLog::setLogger example
Example#3847 - SeasLog::setRequestID example
Example#3848 - SeasLog::setRequestVariable example
Example#3849 - SeasLog::warning example
Example#3850 - Basic usage
Example#3851 - SeekableIterator::seek example
Example#3852 - SplStack example
Example#3853 - SplQueue example
Example#3854 - Efficiently handling tasks with SplQueue
Example#3855 - SplFixedArray usage example
Example#3856 - SplFixedArray::__construct example
Example#3857 - SplFixedArray::count example
Example#3858 - SplFixedArray::fromArray example
Example#3859 - SplFixedArray::getSize example
Example#3860 - SplFixedArray::setSize example
Example#3861 - SplFixedArray::toArray example
Example#3862 - ArrayObject::append example
Example#3863 - ArrayObject::asort example
Example#3864 - ArrayObject::__construct example
Example#3865 - ArrayObject::count example
Example#3866 - ArrayObject::exchangeArray example
Example#3867 - ArrayObject::getArrayCopy example
Example#3868 - ArrayObject::getFlags example
Example#3869 - ArrayObject::getIterator example
Example#3870 - ArrayObject::getIteratorClass example
Example#3871 - ArrayObject::ksort example
Example#3872 - ArrayObject::natcasesort example
Example#3873 - ArrayObject::natsort example
Example#3874 - ArrayObject::offsetExists example
Example#3875 - ArrayObject::offsetGet example
Example#3876 - ArrayObject::offsetSet example
Example#3877 - ArrayObject::offsetUnset example
Example#3878 - ArrayObject::serialize example
Example#3879 - ArrayObject::setFlags example
Example#3880 - ArrayObject::setIteratorClass example
Example#3881 - ArrayObject::uasort example
Example#3882 - ArrayObject::uksort example
Example#3883 - SplObjectStorage as a set
Example#3884 - SplObjectStorage as a map
Example#3885 - SplObjectStorage::addAll example
Example#3886 - SplObjectStorage::attach example
Example#3887 - SplObjectStorage::contains example
Example#3888 - SplObjectStorage::count example
Example#3889 - SplObjectStorage::current example
Example#3890 - SplObjectStorage::detach example
Example#3891 - SplObjectStorage::getHash example
Example#3892 - SplObjectStorage::getInfo example
Example#3893 - SplObjectStorage::key example
Example#3894 - SplObjectStorage::next example
Example#3895 - SplObjectStorage::offsetExists example
Example#3896 - SplObjectStorage::offsetGet example
Example#3897 - SplObjectStorage::offsetSet example
Example#3898 - SplObjectStorage::offsetUnset example
Example#3899 - SplObjectStorage::removeAll example
Example#3900 - SplObjectStorage::removeAllExcept example
Example#3901 - SplObjectStorage::rewind example
Example#3902 - SplObjectStorage::seek example
Example#3903 - SplObjectStorage::serialize example
Example#3904 - SplObjectStorage::setInfo example
Example#3905 - SplObjectStorage::unserialize example
Example#3906 - SplObjectStorage::valid example
Example#3907 - AppendIterator::append example
Example#3908 - Iterating AppendIterator with foreach
Example#3909 - Iterating AppendIterator with the AppendIterator API
Example#3910 - AppendIterator.getIteratorIndex basic example
Example#3911 - AppendIterator::key basic example
Example#3912 - ArrayIterator::current example
Example#3913 - ArrayIterator::key example
Example#3914 - ArrayIterator::next example
Example#3915 - ArrayIterator::rewind example
Example#3916 - ArrayIterator::valid example
Example#3917 - CachingIterator::getCache example
Example#3918 - Available callback arguments
Example#3919 - Callback basic examples
Example#3920 - A DirectoryIterator::__construct example
Example#3921 - A DirectoryIterator::current example
Example#3922 - A DirectoryIterator::getBasename example
Example#3923 - DirectoryIterator::getExtension example
Example#3924 - A DirectoryIterator::getFilename example
Example#3925 - A DirectoryIterator::isDot example
Example#3926 - A DirectoryIterator::key example
Example#3927 - DirectoryIterator::next example
Example#3928 - DirectoryIterator::rewind example
Example#3929 - DirectoryIterator::seek example
Example#3930 - A DirectoryIterator::__toString example
Example#3931 - A DirectoryIterator::valid example
Example#3932 - FilesystemIterator::__construct example
Example#3933 - FilesystemIterator::current example
Example#3934 - FilesystemIterator::key example
Example#3935 - FilesystemIterator::next example
Example#3936 - FilesystemIterator::rewind example
Example#3937 - FilesystemIterator::key example
Example#3938 - FilterIterator::accept example
Example#3939 - GlobIterator example
Example#3940 - GlobIterator::count example
Example#3941 - InfiniteIterator::__construct example
Example#3942 - LimitIterator usage example
Example#3943 - LimitIterator::__construct example
Example#3944 - LimitIterator::getPosition example
Example#3945 - Iterating a MultipleIterator
Example#3946 - NoRewindIterator::__construct example
Example#3947 - NoRewindIterator::rewind example
Example#3948 - RecursiveArrayIterator::getChildren example
Example#3949 - RecursiveArrayIterator::hasChildren example
Example#3950 - Available callback arguments
Example#3951 - Recursive callback basic example
Example#3952 - RecursiveCallbackFilterIterator::hasChildren basic usage
Example#3953 - RecursiveDirectoryIterator example
Example#3954 - getSubPath example
Example#3955 - getSubPathname example
Example#3956 - Basic RecursiveFilterIterator example
Example#3957 - RecursiveFilterIterator example
Example#3958 - Iterating a RecursiveIteratorIterator
Example#3959 - RecursiveRegexIterator::__construct example
Example#3960 - RecursiveRegexIterator::getChildren example
Example#3961 - RecursiveRegexIterator::hasChildren example
Example#3962 - RegexIterator::accept example
Example#3963 - RegexIterator::__construct example
Example#3964 - RegexIterator::getFlags example
Example#3965 - RegexIterator::getMode example
Example#3966 - RegexIterator::getPregFlags example
Example#3967 - RegexIterator::setFlags example
Example#3968 - RegexIterator::setMode example
Example#3969 - RegexIterator::setPregFlags example
Example#3970 - SplFileInfo::__construct example
Example#3971 - SplFileInfo::getATime example
Example#3972 - SplFileInfo::getBasename example
Example#3973 - SplFileInfo::getCTime example
Example#3974 - SplFileInfo::getExtension example
Example#3975 - SplFileInfo::getFilename example
Example#3976 - SplFileInfo::getGroup example
Example#3977 - SplFileInfo::getLinkTarget example
Example#3978 - SplFileInfo::getMTime example
Example#3979 - SplFileInfo::getOwner example
Example#3980 - SplFileInfo::getPath example
Example#3981 - SplFileInfo::getPathInfo example
Example#3982 - SplFileInfo::getPathname example
Example#3983 - SplFileInfo::getPerms example
Example#3984 - SplFileInfo::getRealPath example
Example#3985 - SplFileInfo::getSize example
Example#3986 - SplFileInfo::getType example
Example#3987 - SplFileInfo::isDir example
Example#3988 - SplFileInfo::isExecutable example
Example#3989 - SplFileInfo::isFile example
Example#3990 - SplFileInfo::isLink example
Example#3991 - SplFileInfo::isReadable example
Example#3992 - SplFileInfo::isWriteable example
Example#3993 - SplFileInfo::openFile example
Example#3994 - SplFileInfo::setFileClass example
Example#3995 - SplFileInfo::setFileClass example
Example#3996 - SplFileInfo::__toString example
Example#3997 - SplFileObject::__construct example
Example#3998 - SplFileObject::current example
Example#3999 - SplFileObject::eof example
Example#4000 - SplFileObject::fflush example
Example#4001 - SplFileObject::fgetc example
Example#4002 - SplFileObject::fgetcsv example
Example#4003 - SplFileObject::READ_CSV example
Example#4004 - SplFileObject::fgets example
Example#4005 - SplFileObject::fgetss example
Example#4006 - SplFileObject::flock example
Example#4007 - SplFileObject::fpassthru example
Example#4008 - SplFileObject::fputcsv example
Example#4009 - SplFileObject::fread example
Example#4010 - SplFileObject::fscanf example
Example#4011 - SplFileObject::fseek example
Example#4012 - SplFileObject::fstat example
Example#4013 - SplFileObject::ftell example
Example#4014 - SplFileObject::ftruncate example
Example#4015 - SplFileObject::fwrite example
Example#4016 - SplFileObject::getCsvControl example
Example#4017 - SplFileObject::getFlags example
Example#4018 - SplFileObject::getMaxLineLen example
Example#4019 - SplFileObject::key example
Example#4020 - SplFileObject::key example with SplFileObject::setMaxLineLen
Example#4021 - SplFileObject::next example
Example#4022 - SplFileObject::rewind example
Example#4023 - SplFileObject::seek example
Example#4024 - SplFileObject::setCsvControl example
Example#4025 - SplFileObject::setFlags example
Example#4026 - SplFileObject::setMaxLineLen example
Example#4027 - SplFileObject::valid example
Example#4028 - SplTempFileObject example
Example#4029 - class_implements example
Example#4030 - class_parents example
Example#4031 - class_uses example
Example#4032 - iterator_apply example
Example#4033 - iterator_count example
Example#4034 - iterator_count modifies position
Example#4035 - iterator_count in foreach loops
Example#4036 - iterator_to_array example
Example#4037 - spl_autoload_extensions example
Example#4038 - spl_autoload_register as a replacement for an __autoload function
Example#4039 - spl_autoload_register example where the class is not loaded
Example#4040 - The identifier will be provided without the leading backslash
Example#4041 - spl_classes example
Example#4042 - A spl_object_hash example
Example#4043 - A spl_object_id example
Example#4044 - Using file_get_contents to retrieve data from multiple sources
Example#4045 - Making a POST request to an https server
Example#4046 - Writing data to a compressed file
Example#4047 - A Stream for reading/writing global variables
Example#4048 - Listing files from tar archives
Example#4049 - stream_bucket_prepend examples
Example#4050 - Using stream_context_create
Example#4051 - Using stream_context_get_default
Example#4052 - stream_context_get_options example
Example#4053 - stream_context_get_params example
Example#4054 - stream_context_set_default example
Example#4055 - stream_context_set_options example
Example#4056 - A stream_copy_to_stream example
Example#4057 - Controlling where filters are applied
Example#4058 - Filter for capitalizing characters on foo-bar.txt stream
Example#4059 - Registering a generic filter class to match multiple filter names.
Example#4060 - Dynamically refiltering a stream
Example#4061 - stream_get_contents example
Example#4062 - Using stream_get_filters
Example#4063 - stream_get_meta_data example using fopen with http
Example#4064 - stream_get_meta_data example using stream_socket_client with https
Example#4065 - Using stream_get_transports
Example#4066 - stream_get_wrappers example
Example#4067 - Checking for the existence of a stream wrapper
Example#4068 - stream_is_local example
Example#4069 - stream_isatty example
Example#4070 - stream_notification_callback example
Example#4071 - Simple progressbar for commandline download client
Example#4072 - stream_resolve_include_path example
Example#4073 - stream_select Example
Example#4074 - stream_set_timeout example
Example#4075 - stream_set_write_buffer example
Example#4076 - stream_socket_client example
Example#4077 - Using UDP connection
Example#4078 - stream_socket_enable_crypto example
Example#4079 - A stream_socket_pair example
Example#4080 - stream_socket_recvfrom example
Example#4081 - stream_socket_sendto Example
Example#4082 - Using TCP server sockets
Example#4083 - Using UDP server sockets
Example#4084 - A stream_socket_shutdown example
Example#4085 - How to register a stream wrapper
Example#4086 - Basic usage
Example#4087 - Basic Tidy usage
Example#4088 - tidy::getBody example
Example#4089 - tidy::cleanrepair example
Example#4090 - tidy::__construct example
Example#4091 - tidy::diagnose example
Example#4092 - tidy_get_error_buffer example
Example#4093 - tidy::getConfig example
Example#4094 - tidy_getopt example
Example#4095 - Print all options along with their documentation and default value
Example#4096 - tidy::getStatus example
Example#4097 - tidy::head example
Example#4098 - tidy::html example
Example#4099 - tidy::parseFile example
Example#4100 - tidy::parseString example
Example#4101 - tidy::repairFile example
Example#4102 - tidy::repairString example
Example#4103 - tidy::root example
Example#4104 - tidyNode::getNextSibling example
Example#4105 - tidyNode::getParent example
Example#4106 - tidyNode::getPreviousSibling example
Example#4107 - tidyNode::hasChildren example
Example#4108 - tidyNode::hasSiblings example
Example#4109 - Extract ASP code from a mixed HTML document
Example#4110 - Extract comments from a mixed HTML document
Example#4111 - Extract HTML code from a mixed HTML document
Example#4112 - Extract JSTE code from a mixed HTML document
Example#4113 - Extract PHP code from a mixed HTML document
Example#4114 - Extract text from a mixed HTML document
Example#4115 - ob_tidyhandler example
Example#4116 - tidy_access_count example
Example#4117 - tidy_config_count example
Example#4118 - tidy_error_count example
Example#4119 - tidy_get_output example
Example#4120 - tidy_warning_count example
Example#4121 - Strip comments with the tokenizer
Example#4122 - PhpToken::getTokenName example
Example#4123 - PhpToken::is example
Example#4124 - Usage with array
Example#4125 - PhpToken::isIgnorable example
Example#4126 - PhpToken::__toString example
Example#4127 - PhpToken::tokenize example
Example#4128 - Extending PhpToken
Example#4129 - token_get_all example
Example#4130 - token_get_all incorrect usage example
Example#4131 - token_get_all on a class using a reserved word example
Example#4132 - token_name example
Example#4133 - base64_decode example
Example#4134 - base64_encode example
Example#4135 - get_headers example
Example#4136 - get_headers using HEAD example
Example#4137 - What get_meta_tags parses
Example#4138 - What get_meta_tags returns
Example#4139 - Simple usage of http_build_query
Example#4140 - http_build_query with numerically index elements.
Example#4141 - http_build_query with complex arrays
Example#4142 - Using http_build_query with an object
Example#4143 - A parse_url example
Example#4144 - A parse_url example with missing scheme
Example#4145 - rawurldecode example
Example#4146 - including a password in an FTP URL
Example#4147 - rawurlencode example 2
Example#4148 - urldecode example
Example#4149 - urlencode example
Example#4150 - urlencode and htmlentities example
Example#4151 - Basic Javascript execution
Example#4152 - Yaml Example
Example#4153 - Parse callback example
Example#4154 - Emit callback example
Example#4155 - yaml_emit example
Example#4156 - yaml_parse example
Example#4157 - A classic Application directory layout
Example#4158 - Entry
Example#4159 - Rewrite rule
Example#4160 - Application config
Example#4161 - Default controller
Example#4162 - Default view template
Example#4163 - Run the Application
Example#4164 - An PHP array example
Example#4165 - An ini file example
Example#4166 - A Bootstrap example
Example#4167 - Yaf_Application::bootstrapexample
Example#4168 - Yaf_Application::clearLastErrorexample
Example#4169 - A ini config file example
Example#4170 - Yaf_Application::__constructexample
Example#4171 - Yaf_Application::__constructexample
Example#4172 - Yaf_Application::environexample
Example#4173 - Yaf_Application::executeexample
Example#4174 - Yaf_Application::getConfigexample
Example#4175 - Yaf_Application::getDispatcherexample
Example#4176 - Yaf_Application::getLastErrorMsgexample
Example#4177 - Yaf_Application::getLastErrorNoexample
Example#4178 - Yaf_Application::getModulesexample
Example#4179 - Bootstrap example
Example#4180 - Yaf_Dispatcher::autoRender example
Example#4181 - Yaf_Dispatcher::catchException example
Example#4182 - Yaf_Dispatcher::registerPlugin example
Example#4183 - A custom View engine example
Example#4184 - Yaf_Dispatcher::setView example
Example#4185 - Yaf_Dispatcher::throwexception example
Example#4186 - Yaf_Dispatcher::throwexceptionexample
Example#4187 - Yaf_Config_Iniexample
Example#4188 - define action in a separate file
Example#4189 - Dummy_action.php
Example#4190 - Yaf_Controller_Abstract::forwardexample
Example#4191 - Yaf_Action_Abstract::executeexample
Example#4192 - Yaf_Action_Abstract::executeexample
Example#4193 - Yaf_View_Simple::assignexample
Example#4194 - Template example
Example#4195 - Yaf_View_Simple::assignRefexample
Example#4196 - Template example
Example#4197 - Yaf_View_Simple::clearexample
Example#4198 - Yaf_View_Simple::__construct example
Example#4199 - Yaf_View_Simple::__setexample
Example#4200 - Config example
Example#4201 - Register localnamespace
Example#4202 - Load class example
Example#4203 - Load namespace class example
Example#4204 - MVC class loading example
Example#4205 - MVC class distinctions
Example#4206 - MVC loading example
Example#4207 - Yaf_Loader::registerNamespaceexample
Example#4208 - Yaf_Loader::registerLocalNamespaceexample
Example#4209 - Yaf_Loader::registerNamespaceexample
Example#4210 - Plugin example
Example#4211 - Yaf_Plugin_Abstract::routerShutdownexample
Example#4212 - Yaf_Response_Abstract::appendBodyexample
Example#4213 - Yaf_Response_Abstract::getBodyexample
Example#4214 - Yaf_Response_Abstract::prependBodyexample
Example#4215 - Yaf_Response_Abstract::responseexample
Example#4216 - Yaf_Response_Abstract::setBodyexample
Example#4217 - Yaf_Route_Map::assembleexample
Example#4218 - Yaf_Route_Map example
Example#4219 - Yaf_Route_Map example
Example#4220 - Yaf_Route_Map example
Example#4221 - Yaf_Route_Regex::assembleexample
Example#4222 - Yaf_Route_Regex example
Example#4223 - Yaf_Route_Regex (as of 2.3.0) example
Example#4224 - Yaf_Route_Regex and named capture group (as of 2.3.0) example
Example#4225 - Yaf_Route_Regex example
Example#4226 - Yaf_Route_Rewrite::assembleexample
Example#4227 - Yaf_Route_Rewrite example
Example#4228 - Yaf_Route_Rewrite example
Example#4229 - Yaf_Route_Rewrite (as of 2.3.0) example
Example#4230 - Rewrite rule for Apache
Example#4231 - Rewrite rule for Apache
Example#4232 - Rewrite rule for Lighttpd
Example#4233 - Rewrite rule for Nginx
Example#4234 - Yaf_Route_Static(default route)example
Example#4235 - application.iniexample
Example#4236 - Yaf_Dispatcher::autoConfigexample
Example#4237 - Yaf_Dispatcher::autoRenderexample
Example#4238 - Register some routes in Bootstrap
Example#4239 - plugin Dummy.php (under application.directory/plugins)
Example#4240 - Yaf_Route_Simple::assembleexample
Example#4241 - Yaf_Route_Simple::routeexample
Example#4242 - Yaf_Route_Simple::routeexample
Example#4243 - Yaf_Route_Static::assembleexample
Example#4244 - Yaf_Route_Static::routeexample
Example#4245 - Yaf_Route_Supervar::assemble example
Example#4246 - Yaf_Route_Supervar example
Example#4247 - INI example
Example#4248 - INI sections example
Example#4249 - INIexample
Example#4250 - Taintexample
Example#4251 - Vector
Example#4252 - Map
Example#4253 - Ds\Collection::clear example
Example#4254 - Ds\Collection::copy example
Example#4255 - Ds\Collection::isEmpty example
Example#4256 - Ds\Collection::toArray example
Example#4257 - Ds\Hashable::hash example
Example#4258 - Ds\Sequence::allocate example
Example#4259 - Ds\Sequence::apply example
Example#4260 - Ds\Sequence::capacity example
Example#4261 - Ds\Sequence::contains example
Example#4262 - Ds\Sequence::filter example using callback function
Example#4263 - Ds\Sequence::filter example without a callback function
Example#4264 - Ds\Sequence::find example
Example#4265 - Ds\Sequence::first example
Example#4266 - Ds\Sequence::get example
Example#4267 - Ds\Sequence::get example using array syntax
Example#4268 - Ds\Sequence::insert example
Example#4269 - Ds\Sequence::join example using a separator string
Example#4270 - Ds\Sequence::join example without a separator string
Example#4271 - Ds\Sequence::last example
Example#4272 - Ds\Sequence::map example
Example#4273 - Ds\Sequence::merge example
Example#4274 - Ds\Sequence::pop example
Example#4275 - Ds\Sequence::push example
Example#4276 - Ds\Sequence::reduce with initial value example
Example#4277 - Ds\Sequence::reduce without an initial value example
Example#4278 - Ds\Sequence::remove example
Example#4279 - Ds\Sequence::reverse example
Example#4280 - Ds\Sequence::reversed example
Example#4281 - Ds\Sequence::rotate example
Example#4282 - Ds\Sequence::set example
Example#4283 - Ds\Sequence::set example using array syntax
Example#4284 - Ds\Sequence::shift example
Example#4285 - Ds\Sequence::slice example
Example#4286 - Ds\Sequence::sort example
Example#4287 - Ds\Sequence::sort example using a comparator
Example#4288 - Ds\Sequence::sorted example
Example#4289 - Ds\Sequence::sorted example using a comparator
Example#4290 - Ds\Sequence::sum integer example
Example#4291 - Ds\Sequence::sum float example
Example#4292 - Ds\Sequence::unshift example
Example#4293 - Ds\Vector::allocate example
Example#4294 - Ds\Vector::apply example
Example#4295 - Ds\Vector::capacity example
Example#4296 - Ds\Vector::clear example
Example#4297 - Ds\Vector::__construct example
Example#4298 - Ds\Vector::contains example
Example#4299 - Ds\Vector::copy example
Example#4300 - Ds\Vector::filter example using callback function
Example#4301 - Ds\Vector::filter example without a callback function
Example#4302 - Ds\Vector::find example
Example#4303 - Ds\Vector::first example
Example#4304 - Ds\Vector::get example
Example#4305 - Ds\Vector::get example using array syntax
Example#4306 - Ds\Vector::insert example
Example#4307 - Ds\Vector::isEmpty example
Example#4308 - Ds\Vector::join example using a separator string
Example#4309 - Ds\Vector::join example without a separator string
Example#4310 - Ds\Vector::last example
Example#4311 - Ds\Vector::map example
Example#4312 - Ds\Vector::merge example
Example#4313 - Ds\Vector::pop example
Example#4314 - Ds\Vector::push example
Example#4315 - Ds\Vector::reduce with initial value example
Example#4316 - Ds\Vector::reduce without an initial value example
Example#4317 - Ds\Vector::remove example
Example#4318 - Ds\Vector::reverse example
Example#4319 - Ds\Vector::reversed example
Example#4320 - Ds\Vector::rotate example
Example#4321 - Ds\Vector::set example
Example#4322 - Ds\Vector::set example using array syntax
Example#4323 - Ds\Vector::shift example
Example#4324 - Ds\Vector::slice example
Example#4325 - Ds\Vector::sort example
Example#4326 - Ds\Vector::sort example using a comparator
Example#4327 - Ds\Vector::sorted example
Example#4328 - Ds\Vector::sorted example using a comparator
Example#4329 - Ds\Vector::sum integer example
Example#4330 - Ds\Vector::sum float example
Example#4331 - Ds\Vector::toArray example
Example#4332 - Ds\Vector::unshift example
Example#4333 - Ds\Deque::allocate example
Example#4334 - Ds\Deque::apply example
Example#4335 - Ds\Deque::capacity example
Example#4336 - Ds\Deque::clear example
Example#4337 - Ds\Deque::__construct example
Example#4338 - Ds\Deque::contains example
Example#4339 - Ds\Deque::copy example
Example#4340 - Ds\Deque::filter example using callback function
Example#4341 - Ds\Deque::filter example without a callback function
Example#4342 - Ds\Deque::find example
Example#4343 - Ds\Deque::first example
Example#4344 - Ds\Deque::get example
Example#4345 - Ds\Deque::get example using array syntax
Example#4346 - Ds\Deque::insert example
Example#4347 - Ds\Deque::isEmpty example
Example#4348 - Ds\Deque::join example using a separator string
Example#4349 - Ds\Deque::join example without a separator string
Example#4350 - Ds\Deque::last example
Example#4351 - Ds\Deque::map example
Example#4352 - Ds\Deque::merge example
Example#4353 - Ds\Deque::pop example
Example#4354 - Ds\Deque::push example
Example#4355 - Ds\Deque::reduce with initial value example
Example#4356 - Ds\Deque::reduce without an initial value example
Example#4357 - Ds\Deque::remove example
Example#4358 - Ds\Deque::reverse example
Example#4359 - Ds\Deque::reversed example
Example#4360 - Ds\Deque::rotate example
Example#4361 - Ds\Deque::set example
Example#4362 - Ds\Deque::set example using array syntax
Example#4363 - Ds\Deque::shift example
Example#4364 - Ds\Deque::slice example
Example#4365 - Ds\Deque::sort example
Example#4366 - Ds\Deque::sort example using a comparator
Example#4367 - Ds\Deque::sorted example
Example#4368 - Ds\Deque::sorted example using a comparator
Example#4369 - Ds\Deque::sum integer example
Example#4370 - Ds\Deque::sum float example
Example#4371 - Ds\Deque::toArray example
Example#4372 - Ds\Deque::unshift example
Example#4373 - Ds\Map::allocate example
Example#4374 - Ds\Map::apply example
Example#4375 - Ds\Map::capacity example
Example#4376 - Ds\Map::clear example
Example#4377 - Ds\Map::__construct example
Example#4378 - Ds\Map::copy example
Example#4379 - Ds\Map::diff example
Example#4380 - Ds\Map::filter example using callback function
Example#4381 - Ds\Map::filter example without a callback function
Example#4382 - Ds\Map::first example
Example#4383 - Ds\Map::get example
Example#4384 - Ds\Map::get example using array syntax
Example#4385 - Ds\Map::hasKey example
Example#4386 - Ds\Map::hasValue example
Example#4387 - Ds\Map::intersect example
Example#4388 - Ds\Map::isEmpty example
Example#4389 - Ds\Map::keys example
Example#4390 - Ds\Map::ksort example
Example#4391 - Ds\Map::ksort example using a comparator
Example#4392 - Ds\Map::ksorted example
Example#4393 - Ds\Map::ksorted example using a comparator
Example#4394 - Ds\Map::last example
Example#4395 - Ds\Map::map example
Example#4396 - Ds\Map::merge example
Example#4397 - Ds\Map::pairs example
Example#4398 - Ds\Map::put example
Example#4399 - Ds\Map::put example using objects as keys
Example#4400 - Ds\Map::putAll example
Example#4401 - Ds\Map::reduce with initial value example
Example#4402 - Ds\Map::reduce without an initial value example
Example#4403 - Ds\Map::remove example
Example#4404 - Ds\Map::reverse example
Example#4405 - Ds\Map::reversed example
Example#4406 - Ds\Map::skip example
Example#4407 - Ds\Map::slice example
Example#4408 - Ds\Map::sort example
Example#4409 - Ds\Map::sort example using a comparator
Example#4410 - Ds\Map::sort example
Example#4411 - Ds\Map::sort example using a comparator
Example#4412 - Ds\Map::sum integer example
Example#4413 - Ds\Map::sum float example
Example#4414 - Ds\Map::toArray example
Example#4415 - Ds\Map::union example
Example#4416 - Ds\Map::values example
Example#4417 - Ds\Map::xor example
Example#4418 - Ds\Pair::clear example
Example#4419 - Ds\Pair::copy example
Example#4420 - Ds\Pair::isEmpty example
Example#4421 - Ds\Pair::toArray example
Example#4422 - Ds\Set::add example using integers
Example#4423 - Ds\Set::add example using objects
Example#4424 - Ds\Set::allocate example
Example#4425 - Ds\Set::capacity example
Example#4426 - Ds\Set::clear example
Example#4427 - Ds\Set::__construct example
Example#4428 - Ds\Set::contains example
Example#4429 - Ds\Set::copy example
Example#4430 - Ds\Set::diff example
Example#4431 - Ds\Set::filter example using callback function
Example#4432 - Ds\Set::filter example without a callback function
Example#4433 - Ds\Set::first example
Example#4434 - Ds\Set::get example
Example#4435 - Ds\Set::get example using array syntax
Example#4436 - Ds\Set::intersect example
Example#4437 - Ds\Set::isEmpty example
Example#4438 - Ds\Set::join example using a separator string
Example#4439 - Ds\Set::join example without a separator string
Example#4440 - Ds\Set::last example
Example#4441 - Ds\Set::map example
Example#4442 - Ds\Set::merge example
Example#4443 - Ds\Set::reduce with initial value example
Example#4444 - Ds\Set::reduce without an initial value example
Example#4445 - Ds\Set::remove example
Example#4446 - Ds\Set::reverse example
Example#4447 - Ds\Set::reversed example
Example#4448 - Ds\Set::slice example
Example#4449 - Ds\Set::sort example
Example#4450 - Ds\Set::sort example using a comparator
Example#4451 - Ds\Set::sorted example
Example#4452 - Ds\Set::sorted example using a comparator
Example#4453 - Ds\Set::sum integer example
Example#4454 - Ds\Set::sum float example
Example#4455 - Ds\Set::toArray example
Example#4456 - Ds\Set::union example
Example#4457 - Ds\Set::xor example
Example#4458 - Ds\Stack::clear example
Example#4459 - Ds\Stack::__construct example
Example#4460 - Ds\Stack::copy example
Example#4461 - Ds\Stack::isEmpty example
Example#4462 - Ds\Stack::peek example
Example#4463 - Ds\Stack::pop example
Example#4464 - Ds\Stack::push example
Example#4465 - Ds\Stack::toArray example
Example#4466 - Ds\Queue::allocate example
Example#4467 - Ds\Queue::capacity example
Example#4468 - Ds\Queue::clear example
Example#4469 - Ds\Queue::__construct example
Example#4470 - Ds\Queue::copy example
Example#4471 - Ds\Queue::isEmpty example
Example#4472 - Ds\Queue::peek example
Example#4473 - Ds\Queue::pop example
Example#4474 - Ds\Queue::push example
Example#4475 - Ds\Queue::toArray example
Example#4476 - Ds\PriorityQueue::allocate example
Example#4477 - Ds\PriorityQueue::capacity example
Example#4478 - Ds\PriorityQueue::clear example
Example#4479 - Ds\PriorityQueue::__construct example
Example#4480 - Ds\PriorityQueue::copy example
Example#4481 - Ds\PriorityQueue::isEmpty example
Example#4482 - Ds\PriorityQueue::peek example
Example#4483 - Ds\PriorityQueue::pop example
Example#4484 - Ds\PriorityQueue::push example
Example#4485 - Ds\PriorityQueue::toArray example
Example#4486 - var_representation Examples
Example#4487 - Escaping control characters
Example#4488 - Exporting stdClass
Example#4489 - Exporting classes
Example#4490 - Using __set_state()
Example#4491 - Using PHP's cURL module to fetch the example.com homepage
Example#4492 - Initializing a new cURL session and fetching a web page
Example#4493 - Copying a cURL handle
Example#4494 - curl_errno example
Example#4495 - curl_error example
Example#4496 - curl_escape example
Example#4497 - Fetching a web page
Example#4498 - curl_getinfo example
Example#4499 - curl_getinfo example with option parameter
Example#4500 - Initializing a new cURL session and fetching a web page
Example#4501 - curl_multi_exec example
Example#4502 - curl_reset example
Example#4503 - Initializing a new cURL session and fetching a web page
Example#4504 - Initializing a new cURL session and fetching a web page
Example#4505 - curl_share_setopt example
Example#4506 - curl_share_init example
Example#4507 - curl_share_init_persistent example
Example#4508 - curl_share_setopt example
Example#4509 - curl_errno example
Example#4510 - curl_escape example
Example#4511 - curl_upkeep example
Example#4512 - curl_version example
Example#4513 - CURLFile::__construct example
Example#4514 - CURLFile::__construct uploading multiple files example
Example#4515 - CURLStringFile::__construct example
Example#4516 - Simple HTTP client
Example#4517 - HTTP client using asynchronous DNS resolver
Example#4518 - Echo server
Example#4519 - SSL echo server
Example#4520 - Signal handler
Example#4521 - Use libevent's loop to process requests of `eio' extension
Example#4522 - Miscellaneous
Example#4523 - Simple HTTP server
Example#4524 - Simple HTTPS server
Example#4525 - OpenSSL connection
Example#4526 - EventHttpConnection::makeRequest example
Example#4527 - Connection listener based on a UNIX domain socket
Example#4528 - Simple SMTP server
Example#4529 - Handling SIGTERM signal
Example#4530 - Adding a custom signal
Example#4531 - Adding a timer
Example#4532 - EventBase::getFeatures example
Example#4533 - EventBase::getMethod example
Example#4534 - EventBuffer::search example
Example#4535 - EventBufferEvent::connect example
Example#4536 - Connect to UNIX domain socket which presumably is served by a server, read response from the server and output it to the console
Example#4537 - EventBufferEvent::connectHost example
Example#4538 - Buffer event's read callback
Example#4539 - EventBufferEvent::getOutput example
Example#4540 - EventBufferEvent::sslError example
Example#4541 - Simple SMTP server
Example#4542 - EventConfig::avoidMethod example
Example#4543 - EventConfig::__construct example
Example#4544 - EventConfig::requireFeatures example
Example#4545 - EventHttp::accept example
Example#4546 - EventHttp::addServerAlias example
Example#4547 - EventHttp::bind example
Example#4548 - Simple HTTP server
Example#4549 - EventHttp::setCallback example
Example#4550 - EventHttp::setDefaultCallback example
Example#4551 - EventHttpConnection::makeRequest example
Example#4552 - EventHttpConnection::setCloseCallback example
Example#4553 - EventHttpRequest::__construct example
Example#4554 - EventHttpRequest::sendError example
Example#4555 - EventListener::__construct example
Example#4556 - EventSslContext::__construct example
Example#4557 - FTP example
Example#4558 - ftp_alloc example
Example#4559 - ftp_cdup example
Example#4560 - ftp_chdir example
Example#4561 - ftp_chmod example
Example#4562 - ftp_close example
Example#4563 - ftp_connect example
Example#4564 - ftp_delete example
Example#4565 - ftp_exec example
Example#4566 - ftp_fget example
Example#4567 - ftp_fput example
Example#4568 - ftp_get example
Example#4569 - ftp_get_option example
Example#4570 - ftp_login example
Example#4571 - ftp_mdtm example
Example#4572 - ftp_mkdir example
Example#4573 - ftp_mlsd example
Example#4574 - ftp_nb_continue example
Example#4575 - ftp_nb_fget example
Example#4576 - ftp_nb_fput example
Example#4577 - ftp_nb_get example
Example#4578 - Resuming a download with ftp_nb_get
Example#4579 - Resuming a download at position 100 to a new file with ftp_nb_get
Example#4580 - ftp_nb_put example
Example#4581 - Resuming an upload with ftp_nb_put
Example#4582 - ftp_nlist example
Example#4583 - ftp_pasv example
Example#4584 - ftp_put example
Example#4585 - ftp_pwd example
Example#4586 - Using ftp_raw to login to an FTP server manually.
Example#4587 - ftp_rawlist example
Example#4588 - ftp_rename example
Example#4589 - ftp_rmdir example
Example#4590 - ftp_set_option example
Example#4591 - Sending a SITE command to an ftp server
Example#4592 - ftp_size example
Example#4593 - ftp_ssl_connect example
Example#4594 - ftp_systype example
Example#4595 - Basic Gearman client and worker
Example#4596 - Basic Gearman client and worker, background
Example#4597 - Basic Gearman client and worker, submitting tasks
Example#4598 - Adding two job servers
Example#4599 - Add two job servers
Example#4600 - Basic submission of two tasks
Example#4601 - Basic submission of two tasks with passing application context
Example#4602 - Two tasks, one background and one not
Example#4603 - A high priority task along with two normal tasks
Example#4604 - A low priority task along with two normal tasks
Example#4605 - Monitor completion of multiple background tasks
Example#4606 - Simple job submission with immediate return
Example#4607 - Submitting a job and retrieving incremental status
Example#4608 - Submit and monitor a background job
Example#4609 - Simple job submission with immediate return
Example#4610 - Submitting a job and retrieving incremental status
Example#4611 - Get the status of a long running job
Example#4612 - Monitor the status of a long running background job
Example#4613 - Simple worker making use of extra application context data
Example#4614 - Add alternate Gearman servers
Example#4615 - Add two job servers
Example#4616 - GearmanWorker::setId example
Example#4617 - A simple worker with a 5 second timeout
Example#4618 - Running worker in non-blocking mode
Example#4619 - GearmanWorker::work example
Example#4620 - Testing support for paged result control
Example#4621 - LDAP search example
Example#4622 - Bind with policy information
Example#4623 - Modify description only if it's not empty
Example#4624 - Read some values before deletion
Example#4625 - Delete a reference
Example#4626 - Use pagination for a search
Example#4627 - Complete example with authenticated bind
Example#4628 - Using LDAP Bind
Example#4629 - Using LDAP Bind Anonymously
Example#4630 - Complete example of password check
Example#4631 - Example of connecting to LDAP server.
Example#4632 - Example of connecting securely to LDAP server.
Example#4633 - LDAP pagination
Example#4634 - LDAP pagination
Example#4635 - ldap_count_entries example
Example#4636 - Enumerating all LDAP error messages
Example#4637 - Generating and catching an error
Example#4638 - Searching for an email address
Example#4639 - Whoami extended operation
Example#4640 - PASSWD extended operation
Example#4641 - Show the list of attributes held for a particular directory entry
Example#4642 - Check protocol version
Example#4643 - List all values of the "mail" attribute for a directory entry
Example#4644 - Produce a list of all organizational units of an organization
Example#4645 - Add a telephone number to a contact
Example#4646 - Rename a user
Example#4647 - Add two e-mail addresses to a user
Example#4648 - Change a user's password
Example#4649 - Change a user's password (Active Directory)
Example#4650 - ldap_parse_result example
Example#4651 - LDAP search
Example#4652 - Set protocol version
Example#4653 - Set server controls
Example#4654 - LDAP sort
Example#4655 - memcache extension overview example
Example#4656 - Using memcache session handler
Example#4657 - Memcache::add example
Example#4658 - Memcache::addServer example
Example#4659 - Memcache::close example
Example#4660 - Memcache::connect example
Example#4661 - Memcache::decrement example
Example#4662 - Memcache::delete example
Example#4663 - Memcache::flush example
Example#4664 - Memcache::get example
Example#4665 - Memcache::getExtendedStats example
Example#4666 - Memcache::getServerStatus example
Example#4667 - Memcache::getVersion example
Example#4668 - Memcache::increment example
Example#4669 - Memcache::pconnect example
Example#4670 - Memcache::replace example
Example#4671 - Memcache::set example
Example#4672 - Memcache::set example
Example#4673 - Memcache::setCompressThreshold example
Example#4674 - Memcache::setServerParams example
Example#4675 - Result callback example
Example#4676 - Read-through callback example
Example#4677 - Memcached::addServer example
Example#4678 - Memcached::addServers example
Example#4679 - Memcached::append example
Example#4680 - Memcached::cas example
Example#4681 - Creating a Memcached object
Example#4682 - Memcached::decrement example
Example#4683 - Memcached::delete example
Example#4684 - Memcached::fetch example
Example#4685 - Memcached::getDelayed example
Example#4686 - Memcached::flush example
Example#4687 - Memcached::get example #1
Example#4688 - Memcached::get example #2
Example#4689 - Memcached::getDelayed example
Example#4690 - Memcached::getMulti example for Memcached v3
Example#4691 - Memcached::getMulti example for Memcached v1 and v2
Example#4692 - Memcached::GET_PRESERVE_ORDER example for Memcached v3
Example#4693 - Memcached::GET_PRESERVE_ORDER example for Memcached v1 and v2
Example#4694 - Retrieving Memcached options
Example#4695 - Memcached::getResultCode example
Example#4696 - Memcached::getResultMessage example
Example#4697 - Memcached::getServerByKey example
Example#4698 - Memcached::getServerList example
Example#4699 - Memcached::getStats example
Example#4700 - Memcached::getVersion example
Example#4701 - Memcached::increment example
Example#4702 - Memcached::prepend example
Example#4703 - Memcached::set example
Example#4704 - Memcached::setByKey example
Example#4705 - Memcached::setMulti example
Example#4706 - Setting a Memcached option
Example#4707 - Setting Memcached options
Example#4708 - mqseries_back example
Example#4709 - mqseries_begin example
Example#4710 - mqseries_close example
Example#4711 - mqseries_cmit example
Example#4712 - mqseries_conn example
Example#4713 - mqseries_connx example
Example#4714 - mqseries_connx example using SSL connection & OCSP Responder URL
Example#4715 - mqseries_disc example
Example#4716 - mqseries_get example
Example#4717 - mqseries_inq example
Example#4718 - mqseries_open example
Example#4719 - mqseries_put example
Example#4720 - mqseries_strerror example
Example#4721 - Using dns_get_record
Example#4722 - Using dns_get_record and DNS_ANY
Example#4723 - fsockopen Example
Example#4724 - Using UDP connection
Example#4725 - A simple gethostbyaddr example
Example#4726 - A simple gethostbyname example
Example#4727 - gethostbynamel example
Example#4728 - A simple gethostname example
Example#4729 - getprotobyname example
Example#4730 - getservbyname example
Example#4731 - Download dialog
Example#4732 - Caching directives
Example#4733 - Setting a cookie
Example#4734 - header_register_callback example
Example#4735 - Unsetting specific header.
Example#4736 - Unsetting all previously set headers.
Example#4737 - Example using headers_list
Example#4738 - Examples using headers_sent
Example#4739 - http_get_last_response_headers example
Example#4740 - Using http_response_code in a web server environment
Example#4741 - Using http_response_code in a CLI environment
Example#4742 - inet_ntop Example
Example#4743 - inet_pton Example
Example#4744 - ip2long Example
Example#4745 - Displaying an IP address
Example#4746 - request_parse_body example
Example#4747 - request_parse_body example with customized options
Example#4748 - setcookie send example
Example#4749 - setcookie delete example
Example#4750 - setcookie and arrays
Example#4751 - Using syslog
Example#4752 - Procedural usage of rrd
Example#4753 - OO usage of rrd
Example#4754 - RRDGraph::setOptions example
Example#4755 - Set multiple color options
Example#4756 - RRDUpdater::update examples
Example#4757 - Fetch instrumented calls
Example#4758 - Fetch the list of functions scoutapm will instrument
Example#4759 - snmp_get_quick_print example
Example#4760 - Using snmp_get_valueretrieval
Example#4761 - Using snmp_read_mib
Example#4762 - Using snmp_set_enum_print
Example#4763 - Using snmprealwalk
Example#4764 - Using snmp_set_quick_print
Example#4765 - Using snmp_set_valueretrieval
Example#4766 - Using snmp2_get
Example#4767 - Using snmp2_get_next
Example#4768 - Using snmp2_real_walk
Example#4769 - Using snmp2_set
Example#4770 - Using snmp2_set for setting BITS SNMP object id
Example#4771 - snmp2_walk Example
Example#4772 - Using snmp3_get
Example#4773 - Using snmp3_getnext
Example#4774 - Using snmp3_real_walk
Example#4775 - Using snmp3_set
Example#4776 - Using snmp3_set for setting BITS SNMP object id
Example#4777 - snmp3_walk Example
Example#4778 - Using snmpget
Example#4779 - Using snmpgetnext
Example#4780 - Using snmprealwalk
Example#4781 - Using snmpset
Example#4782 - Using snmpset for setting BITS SNMP object id
Example#4783 - snmpwalk Example
Example#4784 - snmpwalkoid Example
Example#4785 - SNMP::close example
Example#4786 - Fetching the physical location of the host
Example#4787 - Single SNMP object
Example#4788 - Multiple SNMP objects
Example#4789 - SNMP::getErrno example
Example#4790 - SNMP::getError example
Example#4791 - Single SNMP object
Example#4792 - Miltiple SNMP objects
Example#4793 - Set single SNMP object id
Example#4794 - Set multiple values using single SNMP::set call
Example#4795 - Using SNMP::set for setting BITS SNMP object id
Example#4796 - SNMP::setSecurity example
Example#4797 - SNMP::walk example
Example#4798 - suffixAsKey example
Example#4799 - Socket example: Simple TCP/IP server
Example#4800 - Socket example: Simple TCP/IP client
Example#4801 - Using socket_atmark to set the source address
Example#4802 - Using socket_bind to set the source address
Example#4803 - socket_create_pair example
Example#4804 - socket_create_pair IPC example
Example#4805 - socket_get_option example
Example#4806 - socket_import_stream example
Example#4807 - socket_last_error example
Example#4808 - socket_recv example
Example#4809 - socket_recvfrom example
Example#4810 - Using null with socket_select
Example#4811 - Understanding socket_select's result
Example#4812 - socket_select example
Example#4813 - socket_sendto Example
Example#4814 - socket_set_block example
Example#4815 - socket_set_nonblock example
Example#4816 - socket_set_option example
Example#4817 - socket_strerror example
Example#4818 - Authenticating with a ssh agent
Example#4819 - Authentication using a public hostkey
Example#4820 - Retrieving a list of authentication methods
Example#4821 - Authenticating with a password
Example#4822 - Authentication using a public key
Example#4823 - ssh2_connect example
Example#4824 - Executing a command
Example#4825 - Opening a shell and retrieving the stderr stream associated with it
Example#4826 - Checking the fingerprint against a known value
Example#4827 - Determining what methods were negotiated
Example#4828 - Adding a publickey with ssh2_publickey_add
Example#4829 - Listing authorized keys with ssh2_publickey_list
Example#4830 - Downloading a file via SCP
Example#4831 - Uploading a file via SCP
Example#4832 - Opening a file via SFTP
Example#4833 - Changing the mode of a file on a remote server
Example#4834 - Stating a symbolic link via SFTP
Example#4835 - Creating a directory on a remote server
Example#4836 - Reading a symbolic link
Example#4837 - Resolving a pathname
Example#4838 - Renaming a file via sftp
Example#4839 - Removing a directory on a remote server
Example#4840 - Stating a file via SFTP
Example#4841 - Creating a symbolic link
Example#4842 - Deleting a file
Example#4843 - Requesting an interactive shell
Example#4844 - Opening a tunnel to an arbitrary host
Example#4845 - Object-oriented style
Example#4846 - Procedural style
Example#4847 - stomp_connect_error example
Example#4848 - stomp_version example
Example#4849 - Object-oriented style
Example#4850 - Procedural style
Example#4851 - Object-oriented style
Example#4852 - Procedural style
Example#4853 - Object-oriented style
Example#4854 - Procedural style
Example#4855 - Object-oriented style
Example#4856 - Procedural style
Example#4857 - Object-oriented style
Example#4858 - Procedural style
Example#4859 - Object-oriented style
Example#4860 - Procedural style
Example#4861 - Object-oriented style
Example#4862 - Procedural style
Example#4863 - Object-oriented style
Example#4864 - Procedural style
Example#4865 - Object-oriented style
Example#4866 - Procedural style
Example#4867 - Train from array
Example#4868 - Train from a file
Example#4869 - svn_add example
Example#4870 - Default authentication example
Example#4871 - svn_blame example
Example#4872 - Basic example
Example#4873 - Basic example
Example#4874 - Basic example
Example#4875 - Basic example
Example#4876 - Basic example
Example#4877 - Basic example
Example#4878 - Diffing two revisions of a repository path
Example#4879 - Portably diffing two local files
Example#4880 - svn_export example
Example#4881 - Basic example
Example#4882 - svn_log example
Example#4883 - svn_ls example
Example#4884 - Basic example
Example#4885 - Basic example
Example#4886 - Deny all connections from localhost
Example#4887 - Ban an URL
Example#4888 - Get statistic snapshot
Example#4889 - Read varnish shared memory log
Example#4890 - VarnishAdmin::__construct example
Example#4891 - Parallel searching using Yaz
Example#4892 - CCL configuration
Example#4893 - CCL Parsing
Example#4894 - Record Update
Example#4895 - Array for GRS-1 record
Example#4896 - Working with MARCXML
Example#4897 - PHP function that scans titles
Example#4898 - Query Examples
Example#4899 - Sort Criterias
Example#4900 - A ZMQContext example
Example#4901 - A ZMQContext example
Example#4902 - A ZMQContext example
Example#4903 - A ZMQSocket example
Example#4904 - A send/recv example
Example#4905 - A ZMQPoll example
Example#4906 - zookeeper_dispatch example #1
Example#4907 - zookeeper_dispatch example #2
Example#4908 - Zookeeper::addAuth example
Example#4909 - Zookeeper::create example
Example#4910 - Zookeeper::delete example
Example#4911 - Zookeeper::exists example
Example#4912 - Zookeeper::get example
Example#4913 - Zookeeper::get stat example
Example#4914 - Zookeeper::getAcl example
Example#4915 - Zookeeper::getChildren example
Example#4916 - Zookeeper::set example
Example#4917 - Zookeeper::setAcl example
Example#4918 - Zookeeper::setDebugLevel example
Example#4919 - ZookeeperConfig::add example
Example#4920 - ZookeeperConfig::get example
Example#4921 - ZookeeperConfig::remove example
Example#4922 - ZookeeperConfig::set example
Example#4923 - solr_get_version example
Example#4924 - Contents of the BootStrap file
Example#4925 - Adding a document to the index
Example#4926 - Merging one document into another document
Example#4927 - Searching for documents - SolrObject responses
Example#4928 - Searching for documents - SolrDocument responses
Example#4929 - Simple TermsComponent example - basic
Example#4930 - Simple TermsComponent example - using a prefix
Example#4931 - Simple TermsComponent example - specifying a minimum frequency
Example#4932 - Simple Facet Example
Example#4933 - Simple Facet Example - with optional field override for mincount
Example#4934 - Facet Date Example
Example#4935 - Connecting to SSL-Enabled Server
Example#4936 - Collapsing a SolrQuery
Example#4937 - Solr Real Time Get (RTG) example SolrClient::getById
Example#4938 - SolrInputDocument::addChildDocument example
Example#4939 - SolrInputDocument::addChildDocuments example
Example#4940 - SolrDocument::toArray example
Example#4941 - SolrObject::__construct example
Example#4942 - SolrObject::offsetUnset example
Example#4943 - SolrClient::addDocument example
Example#4944 - SolrClient::addDocument example 2
Example#4945 - SolrClient::addDocuments example
Example#4946 - SolrClient::__construct example
Example#4947 - SolrQuery::deleteByQuery example
Example#4948 - SolrClient::getById example
Example#4949 - SolrClient::getByIds example
Example#4950 - SolrClient::ping example
Example#4951 - SolrClient::query example
Example#4952 - SolrClient::request example
Example#4953 - SolrClient::setResponseWriter example
Example#4954 - SolrParams::setParam example
Example#4955 - SolrQuery::addFacetField example
Example#4956 - SolrQuery::addFacetField example
Example#4957 - SolrQuery::addFilterQuery example
Example#4958 - SolrQuery::addGroupSortField example
Example#4959 - SolrQuery::collapse example
Example#4960 - SolrQuery::setExpand example
Example#4961 - SolrDisMaxQuery::addBigramPhraseField example
Example#4962 - SolrDisMaxQuery::addBoostQuery example
Example#4963 - SolrDisMaxQuery::addPhraseField example
Example#4964 - SolrDisMaxQuery::addQueryField example
Example#4965 - SolrDisMaxQuery::addTrigramPhraseField example
Example#4966 - SolrDisMaxQuery::addUserField example
Example#4967 - SolrDisMaxQuery::__construct example
Example#4968 - SolrDisMaxQuery::removeBigramPhraseField example
Example#4969 - SolrDisMaxQuery::removeBoostQuery example
Example#4970 - SolrDisMaxQuery::removePhraseField example
Example#4971 - SolrDisMaxQuery::removeQueryField example
Example#4972 - SolrDisMaxQuery::removeTrigramPhraseField example
Example#4973 - SolrDisMaxQuery::removeUserField example
Example#4974 - SolrDisMaxQuery::setBigramPhraseFields example
Example#4975 - SolrDisMaxQuery::setBigramPhraseSlop example
Example#4976 - SolrDisMaxQuery::setBoostFunction example
Example#4977 - SolrDisMaxQuery::setBoostQuery example
Example#4978 - SolrDisMaxQuery::setMinimumMatch example
Example#4979 - SolrDisMaxQuery::setPhraseFields example
Example#4980 - SolrDisMaxQuery::setPhraseSlop example
Example#4981 - SolrDisMaxQuery::setQueryAlt example
Example#4982 - SolrDisMaxQuery::setQueryPhraseSlop example
Example#4983 - SolrDisMaxQuery::setTieBreaker example
Example#4984 - SolrDisMaxQuery::setTrigramPhraseFields example
Example#4985 - SolrDisMaxQuery::setTrigramPhraseSlop example
Example#4986 - SolrDisMaxQuery::setUserFields example
Example#4987 - SolrDisMaxQuery::useDisMaxQueryParser example
Example#4988 - SolrDisMaxQuery::useEDisMaxQueryParser example
Example#4989 - SolrCollapseFunction::__construct example
Example#4990 - SolrCollapseFunction::setHint example
Example#4991 - SolrCollapseFunction::setMax example
Example#4992 - Turning off PHP parsing for a directory using .htaccess
Example#4993 - apache_get_modules example
Example#4994 - apache_get_version example
Example#4995 - apache_getenv example
Example#4996 - apache_lookup_uri example
Example#4997 - Passing information between PHP and Perl
Example#4998 - Logging values in access.log
Example#4999 - apache_request_headers example
Example#5000 - apache_response_headers example
Example#5001 - Setting an Apache environment variable using apache_setenv
Example#5002 - getallheaders example
Example#5003 - Registering a variable with $_SESSION.
Example#5004 - Unregistering a variable with $_SESSION.
Example#5005 - Counting the number of hits of a single user
Example#5006 - Example information
Example#5007 - session_cache_expire example
Example#5008 - session_cache_limiter example
Example#5009 - session_create_id example with session_regenerate_id
Example#5010 - Destroying a session with $_SESSION
Example#5011 - session_gc example for task managers like cron
Example#5012 - session_gc example for user accessible script
Example#5013 - session_name example
Example#5014 - A session_regenerate_id example
Example#5015 - Avoiding lost session by session_regenerate_id
Example#5016 - Custom session handler: see full code in SessionHandlerInterface synopsis.
Example#5017 - page1.php
Example#5018 - page2.php
Example#5019 - Overriding the cookie lifetime
Example#5020 - Reading the session and closing it
Example#5021 - Using SessionHandler to add encryption to internal PHP save handlers.
Example#5022 - Example using SessionHandlerInterface
Example#5023 - Tokenize comma separated integer list
Example#5024 - Tokenize assign statement
Example#5025 - Simple calculator
Example#5026 - Parse words out from a sentence
Example#5027 - Examples of valid patterns
Example#5028 - Examples of invalid patterns
Example#5029 - Usage of comments in PCRE pattern
Example#5030 - Example comparing preg_filter with preg_replace
Example#5031 - preg_grep example
Example#5032 - preg_last_error example
Example#5033 - preg_last_error_msg example
Example#5034 - Find the string of text "php"
Example#5035 - Find the word "web"
Example#5036 - Getting the domain name out of a URL
Example#5037 - Using named subpattern
Example#5038 - Getting all phone numbers out of some text.
Example#5039 - Find matching HTML tags (greedy)
Example#5040 - Using named subpattern
Example#5041 - preg_quote example
Example#5042 - Italicizing a word within some text
Example#5043 - Using backreferences followed by numeric literals
Example#5044 - Using indexed arrays with preg_replace
Example#5045 - Replacing several values
Example#5046 - Strip whitespace
Example#5047 - Using the count parameter
Example#5048 - preg_replace_callback and anonymous function
Example#5049 - preg_replace_callback example
Example#5050 - preg_replace_callback using recursive structure to handle encapsulated BB code
Example#5051 - preg_replace_callback_array example
Example#5052 - preg_split example : Get the parts of a search string
Example#5053 - Splitting a string into component characters
Example#5054 - Splitting a string into matches and their offsets
Example#5055 - addcslashes with Ranges
Example#5056 - addcslashes with Characters in Wrong Order
Example#5057 - addcslashes example
Example#5058 - Escaping Characters
Example#5059 - An addslashes example
Example#5060 - bin2hex example
Example#5061 - chr example
Example#5062 - Overflow behavior
Example#5063 - Building a UTF-8 string from individual bytes
Example#5064 - chunk_split example
Example#5065 - convert_uudecode example
Example#5066 - convert_uuencode example
Example#5067 - count_chars example
Example#5068 - Displaying a crc32 checksum
Example#5069 - crypt examples
Example#5070 - echo examples
Example#5071 - echo is not an expression
Example#5072 - Using Parentheses
Example#5073 - Invalid Expression
Example#5074 - explode examples
Example#5075 - explode return examples
Example#5076 - limit parameter examples
Example#5077 - fprintf: zero-padded integers
Example#5078 - fprintf: formatting currency
Example#5079 - Translation Table Example
Example#5080 - hex2bin example
Example#5081 - Decoding HTML entities
Example#5082 - A htmlentities example
Example#5083 - Usage of ENT_IGNORE
Example#5084 - htmlspecialchars example
Example#5085 - A htmlspecialchars_decode example
Example#5086 - implode example
Example#5087 - lcfirst example
Example#5088 - levenshtein example
Example#5089 - localeconv example
Example#5090 - Usage example of ltrim
Example#5091 - A md5 example
Example#5092 - Usage example of md5_file
Example#5093 - metaphone basic example
Example#5094 - Using the max_phonemes parameter
Example#5095 - Using the max_phonemes parameter
Example#5096 - money_format Example
Example#5097 - nl_langinfo example
Example#5098 - Using nl2br
Example#5099 - Generating valid HTML markup using the use_xhtml parameter
Example#5100 - Various newline separators
Example#5101 - number_format Example
Example#5102 - A negative value for decimals
Example#5103 - ord example
Example#5104 - Examining the individual bytes of a UTF-8 string
Example#5105 - Using parse_str
Example#5106 - parse_str name mangling
Example#5107 - print examples
Example#5108 - printf: various examples
Example#5109 - printf: string specifiers
Example#5110 - quoted_printable_decode example
Example#5111 - quoted_printable_encode example
Example#5112 - quotemeta example
Example#5113 - Usage example of rtrim
Example#5114 - setlocale Examples
Example#5115 - setlocale Retrieve current setting
Example#5116 - setlocale Examples for Windows
Example#5117 - A sha1 example
Example#5118 - sha1_file example
Example#5119 - similar_text argument swapping example
Example#5120 - Soundex Examples
Example#5121 - Argument swapping
Example#5122 - Wrong Argument Order
Example#5123 - Use Order Placeholder
Example#5124 - Repeated Placeholder
Example#5125 - Specifying padding character
Example#5126 - Position specifier with other specifiers
Example#5127 - sprintf: zero-padded integers
Example#5128 - sprintf: formatting currency
Example#5129 - sprintf: scientific notation
Example#5130 - sscanf Example
Example#5131 - sscanf - using optional parameters
Example#5132 - Using the empty string ''
Example#5133 - Showing case-sensitivity
Example#5134 - Basic str_decrement example
Example#5135 - str_decrement example with a carry
Example#5136 - Using the empty string ''
Example#5137 - Showing case-sensitivity
Example#5138 - str_getcsv example
Example#5139 - str_getcsv example with an empty string
Example#5140 - Basic str_increment example
Example#5141 - str_increment example with a carry
Example#5142 - str_ireplace example
Example#5143 - str_pad example
Example#5144 - str_repeat example
Example#5145 - Basic str_replace examples
Example#5146 - Examples of potential str_replace gotchas
Example#5147 - str_rot13 example
Example#5148 - str_shuffle example
Example#5149 - Example uses of str_split
Example#5150 - Using the empty string ''
Example#5151 - Showing case-sensitivity
Example#5152 - A str_word_count example
Example#5153 - strcasecmp example
Example#5154 - strcmp example
Example#5155 - strcspn example
Example#5156 - strip_tags example
Example#5157 - stripcslashes example
Example#5158 - stripos examples
Example#5159 - A stripslashes example
Example#5160 - Using stripslashes on an array
Example#5161 - stristr example
Example#5162 - Testing if a string is found or not
Example#5163 - A strlen example
Example#5164 - strnatcasecmp example
Example#5165 - strcmp
Example#5166 - strncasecmp example
Example#5167 - strncmp example
Example#5168 - strpbrk example
Example#5169 - Using ===
Example#5170 - Using !==
Example#5171 - Using an offset
Example#5172 - strrchr example
Example#5173 - Reversing a string with strrev
Example#5174 - A simple strripos example
Example#5175 - Checking if a needle is in the haystack
Example#5176 - Searching with offsets
Example#5177 - strspn example
Example#5178 - strstr example
Example#5179 - strtok example
Example#5180 - strtok behavior on empty part found
Example#5181 - The difference between strtok and explode
Example#5182 - strtolower example
Example#5183 - strtoupper example
Example#5184 - strtr example
Example#5185 - strtr example with two arguments
Example#5186 - strtr behavior comparison
Example#5187 - Using a negative offset
Example#5188 - Using a negative length
Example#5189 - Basic substr usage
Example#5190 - substr casting behaviour
Example#5191 - Invalid Character Range
Example#5192 - A substr_compare example
Example#5193 - A substr_count example
Example#5194 - Simple substr_replace examples
Example#5195 - Using substr_replace to replace multiple strings at once
Example#5196 - Usage example of trim
Example#5197 - Trimming array values with trim
Example#5198 - ucfirst example
Example#5199 - ucwords example
Example#5200 - ucwords example with custom delimiter
Example#5201 - ucwords example with additional delimiters
Example#5202 - Basic examples
Example#5203 - Basic example
Example#5204 - vfprintf: zero-padded integers
Example#5205 - vprintf: zero-padded integers
Example#5206 - vsprintf: zero-padded integers
Example#5207 - wordwrap example
Example#5208 - wordwrap example
Example#5209 - wordwrap example
Example#5210 - array example
Example#5211 - Automatic index with array
Example#5212 - 1-based index with array
Example#5213 - Accessing an array inside double quotes
Example#5214 - array_all example
Example#5215 - array_any example
Example#5216 - array_change_key_case example
Example#5217 - array_chunk example
Example#5218 - Get the column of first names from a recordset
Example#5219 - Get the column of last names from a recordset, indexed by the "id" column
Example#5220 - Get the column of usernames from the public "username" property of an object
Example#5221 - Get the column of names from the private "name" property of an object using the magic methods __isset and __get
Example#5222 - A simple array_combine example
Example#5223 - array_count_values example
Example#5224 - array_diff example
Example#5225 - array_diff example with non-matching types
Example#5226 - array_diff_assoc example
Example#5227 - array_diff_assoc example
Example#5228 - array_diff_key example
Example#5229 - array_diff_uassoc example
Example#5230 - array_diff_ukey example
Example#5231 - array_fill example
Example#5232 - array_fill example with a negative start index
Example#5233 - array_fill_keys example
Example#5234 - array_filter example
Example#5235 - array_filter without callback
Example#5236 - array_filter with mode
Example#5237 - array_find example
Example#5238 - array_find_key example
Example#5239 - Basic array_first Usage
Example#5240 - array_flip example
Example#5241 - array_flip example : collision
Example#5242 - array_intersect example
Example#5243 - array_intersect_assoc example
Example#5244 - array_intersect_key example
Example#5245 - array_intersect_uassoc example
Example#5246 - array_intersect_ukey example
Example#5247 - array_is_list example
Example#5248 - array_key_exists example
Example#5249 - array_key_exists vs isset
Example#5250 - Basic array_key_first Usage
Example#5251 - array_keys example
Example#5252 - Basic array_last Usage
Example#5253 - array_map example
Example#5254 - array_map using a lambda function
Example#5255 - array_map - using more arrays
Example#5256 - Performing a zip operation of arrays
Example#5257 - null callback with only array
Example#5258 - array_map - with string keys
Example#5259 - array_map - associative arrays
Example#5260 - array_merge example
Example#5261 - Simple array_merge example
Example#5262 - array_merge with non-array types
Example#5263 - array_merge_recursive example
Example#5264 - Sorting multiple arrays
Example#5265 - Sorting multi-dimensional array
Example#5266 - Sorting database results
Example#5267 - Case insensitive sorting
Example#5268 - array_pad example
Example#5269 - array_pop example
Example#5270 - array_product examples
Example#5271 - array_push example
Example#5272 - array_rand example
Example#5273 - array_reduce example
Example#5274 - array_replace example
Example#5275 - Example of how nested arrays are handled
Example#5276 - array_replace_recursive example
Example#5277 - array_replace_recursive and recursive behavior
Example#5278 - array_reverse example
Example#5279 - array_search example
Example#5280 - array_shift example
Example#5281 - array_slice examples
Example#5282 - array_slice and one-based array
Example#5283 - array_slice and array with mixed keys
Example#5284 - array_splice examples
Example#5285 - Equivalent statements to various array_splice examples
Example#5286 - array_sum examples
Example#5287 - array_udiff example using stdClass Objects
Example#5288 - array_udiff example using DateTime Objects
Example#5289 - array_udiff_assoc example
Example#5290 - array_udiff_uassoc example
Example#5291 - array_uintersect example
Example#5292 - array_uintersect_assoc example
Example#5293 - array_uintersect_uassoc example
Example#5294 - array_unique example
Example#5295 - array_unique and types
Example#5296 - array_unshift example
Example#5297 - Usage with associative arrays
Example#5298 - array_values example
Example#5299 - array_walk example
Example#5300 - array_walk example using anonymous function
Example#5301 - array_walk_recursive example
Example#5302 - arsort example
Example#5303 - asort example
Example#5304 - compact example
Example#5305 - count example
Example#5306 - count non Countable|array example (bad example - don't do this)
Example#5307 - Recursive count example
Example#5308 - Countable object
Example#5309 - Example use of current and friends
Example#5310 - each examples
Example#5311 - Traversing an array with each
Example#5312 - end example
Example#5313 - extract example
Example#5314 - in_array example
Example#5315 - in_array with strict example
Example#5316 - in_array with an array as needle
Example#5317 - key example
Example#5318 - krsort example
Example#5319 - ksort example
Example#5320 - ksort with int keys
Example#5321 - list examples
Example#5322 - An example use of list
Example#5323 - Using nested list
Example#5324 - list and order of index definitions
Example#5325 - list with keys
Example#5326 - natcasesort example
Example#5327 - natsort examples demonstrating basic usage
Example#5328 - natsort examples demonstrating potential gotchas
Example#5329 - Example use of next and friends
Example#5330 - Example use of prev and friends
Example#5331 - range examples
Example#5332 - reset example
Example#5333 - rsort example
Example#5334 - shuffle example
Example#5335 - sort example
Example#5336 - sort example using case-insensitive natural ordering
Example#5337 - Basic uasort example
Example#5338 - uksort example
Example#5339 - usort example
Example#5340 - usort example using multi-dimensional array
Example#5341 - usort example using a member function of an object
Example#5342 - usort example using a closure to sort a multi-dimensional array
Example#5343 - usort example using the spaceship operator
Example#5344 - Class Definitions
Example#5345 - test_script.php
Example#5346 - class_alias example
Example#5347 - class_exists example
Example#5348 - autoload parameter example
Example#5349 - enum_exists example
Example#5350 - Using get_called_class
Example#5351 - Using get_class
Example#5352 - Using get_class in superclass
Example#5353 - Using get_class with namespaced classes
Example#5354 - get_class_methods example
Example#5355 - get_class_vars example
Example#5356 - get_class_vars and scoping behaviour
Example#5357 - get_declared_classes example
Example#5358 - get_declared_interfaces example
Example#5359 - get_mangled_object_vars example
Example#5360 - Use of get_object_vars
Example#5361 - Using get_parent_class
Example#5362 - interface_exists example
Example#5363 - is_a example
Example#5364 - Using the instanceof operator
Example#5365 - is_subclass_of example
Example#5366 - is_subclass_of using interface example
Example#5367 - method_exists example
Example#5368 - Static method_exists example
Example#5369 - A property_exists example
Example#5370 - A ctype_alnum example (using the default locale)
Example#5371 - A ctype_alpha example (using the default locale)
Example#5372 - A ctype_cntrl example
Example#5373 - A ctype_digit example
Example#5374 - A ctype_digit example comparing strings with integers
Example#5375 - A ctype_graph example
Example#5376 - A ctype_lower example (using the default locale)
Example#5377 - A ctype_print example
Example#5378 - A ctype_punct example
Example#5379 - A ctype_space example
Example#5380 - A ctype_upper example (using the default locale)
Example#5381 - A ctype_xdigit example
Example#5382 - Configuring the default filter to act like htmlspecialchars
Example#5383 - Example of using FILTER_CALLBACK to validate a login name
Example#5384 - Validating email addresses with filter_var
Example#5385 - Validating IP addresses with filter_var
Example#5386 - Passing options to filter_var
Example#5387 - Sanitizing and validating email addresses
Example#5388 - A filter_input example
Example#5389 - A filter_list example
Example#5390 - A filter_var example
Example#5391 - Example validating entries of an array
Example#5392 - Example of passing an array for options
Example#5393 - Providing flags either directly or via an array
Example#5394 - A filter_var_array example
Example#5395 - call_user_func example and references
Example#5396 - call_user_func example
Example#5397 - call_user_func using namespace name
Example#5398 - Using a class method with call_user_func
Example#5399 - Using lambda function with call_user_func
Example#5400 - call_user_func_array example
Example#5401 - call_user_func_array using namespace name
Example#5402 - Using lambda function
Example#5403 - Passing values by reference
Example#5404 - call_user_func_array using named arguments
Example#5405 - Creating a function dynamically, with create_function or anonymous functions
Example#5406 - Making a general processing function, with create_function or anonymous functions
Example#5407 - Using dynamic functions as callback functions
Example#5408 - forward_static_call example
Example#5409 - forward_static_call_array example
Example#5410 - func_get_arg example
Example#5411 - func_get_arg example of byref and byval arguments
Example#5412 - func_get_args example
Example#5413 - func_get_args example of byref and byval arguments
Example#5414 - func_num_args example
Example#5415 - function_exists example
Example#5416 - get_defined_functions example
Example#5417 - register_shutdown_function example
Example#5418 - register_tick_function example
Example#5419 - Quickhash Example
Example#5420 - Quickhash ArrayAccess Example
Example#5421 - Quickhash Iterator Example
Example#5422 - Quickhash String Values Example
Example#5423 - QuickHashIntSet::add example
Example#5424 - QuickHashIntSet::__construct example
Example#5425 - QuickHashIntSet::delete example
Example#5426 - QuickHashIntSet::exists example
Example#5427 - QuickHashIntSet::getSize example
Example#5428 - QuickHashIntSet::loadFromFile example
Example#5429 - QuickHashIntSet::loadFromString example
Example#5430 - QuickHashIntSet::saveToFile example
Example#5431 - QuickHashIntSet::saveToString example
Example#5432 - QuickHashIntHash::add example
Example#5433 - QuickHashIntHash::__construct example
Example#5434 - QuickHashIntHash::delete example
Example#5435 - QuickHashIntHash::exists example
Example#5436 - QuickHashIntHash::get example
Example#5437 - QuickHashIntHash::getSize example
Example#5438 - QuickHash IntHash file format
Example#5439 - QuickHash IntHash file format
Example#5440 - QuickHashIntHash::loadFromFile example
Example#5441 - QuickHashIntHash::loadFromString example
Example#5442 - QuickHashIntHash::saveToFile example
Example#5443 - QuickHashIntHash::saveToString example
Example#5444 - QuickHashIntHash::set example
Example#5445 - QuickHashIntHash::update example
Example#5446 - QuickHashStringIntHash::add example
Example#5447 - QuickHashStringIntHash::__construct example
Example#5448 - QuickHashStringIntHash::delete example
Example#5449 - QuickHashStringIntHash::get example
Example#5450 - QuickHashStringIntHash::getSize example
Example#5451 - QuickHash StringIntHash file format
Example#5452 - QuickHash IntHash file format
Example#5453 - QuickHashStringIntHash::loadFromFile example
Example#5454 - QuickHashStringIntHash::loadFromString example
Example#5455 - QuickHashStringIntHash::saveToFile example
Example#5456 - QuickHashStringIntHash::saveToString example
Example#5457 - QuickHashStringIntHash::set example
Example#5458 - QuickHashStringIntHash::update example
Example#5459 - QuickHashIntStringHash::add example
Example#5460 - QuickHashIntStringHash::__construct example
Example#5461 - QuickHashIntStringHash::delete example
Example#5462 - QuickHashIntStringHash::get example
Example#5463 - QuickHashIntStringHash::getSize example
Example#5464 - QuickHash IntString file format
Example#5465 - QuickHash IntString file format
Example#5466 - QuickHashIntStringHash::loadFromFile example
Example#5467 - QuickHashIntStringHash::loadFromString example
Example#5468 - QuickHashIntStringHash::saveToFile example
Example#5469 - QuickHashIntStringHash::saveToString example
Example#5470 - QuickHashIntStringHash::set example
Example#5471 - QuickHashIntStringHash::update example
Example#5472 - Reflection Example from Shell (a Terminal)
Example#5473 - Extending the built-in classes
Example#5474 - Reflection::getModifierNames example
Example#5475 - Basic usage ReflectionClass
Example#5476 - Basic usage of ReflectionClass::export
Example#5477 - Basic usage
Example#5478 - Filtering results by class name
Example#5479 - Filtering results by class name, with inheritance
Example#5480 - Usage of ReflectionClass::getConstant
Example#5481 - Basic usage of ReflectionClass::getConstructor
Example#5482 - ReflectionClass::getDefaultProperties example
Example#5483 - ReflectionClass::getDocComment example
Example#5484 - ReflectionClass::getEndLine example
Example#5485 - Basic usage of ReflectionClass::getExtension
Example#5486 - Basic usage of ReflectionClass::getExtensionName
Example#5487 - ReflectionClass::getInterfaceNames example
Example#5488 - ReflectionClass::getInterfaces example
Example#5489 - Basic usage of ReflectionClass::getMethod
Example#5490 - Basic usage of ReflectionClass::getMethods
Example#5491 - Filtering results from ReflectionClass::getMethods
Example#5492 - ReflectionClass::getName example
Example#5493 - ReflectionClass::getNamespaceName example
Example#5494 - ReflectionClass::getProperties filtering example
Example#5495 - Basic usage of ReflectionClass::getProperty
Example#5496 - Basic ReflectionClass::getReflectionConstants example
Example#5497 - ReflectionClass::getShortName example
Example#5498 - Basic usage of ReflectionClass::getStaticPropertyValue
Example#5499 - ReflectionClass::hasConstant example
Example#5500 - ReflectionClass::hasMethod example
Example#5501 - ReflectionClass::hasProperty example
Example#5502 - Basic usage
Example#5503 - ReflectionClass::inNamespace example
Example#5504 - ReflectionClass::isAbstract example
Example#5505 - ReflectionClass::isAnonymous example
Example#5506 - Basic usage of ReflectionClass::isCloneable
Example#5507 - ReflectionClass::isFinal example
Example#5508 - ReflectionClass::isInstance related examples
Example#5509 - ReflectionClass::isInstantiable example
Example#5510 - Basic usage of ReflectionClass::isInterface
Example#5511 - Basic usage of ReflectionClass::isInternal
Example#5512 - Basic ReflectionClass::isIterable Usage
Example#5513 - ReflectionClass::isReadOnly example
Example#5514 - Basic usage
Example#5515 - Marking an uninitialized lazy object as initialized
Example#5516 - Marking an initialized object as initialized
Example#5517 - Basic usage of ReflectionClass::newInstanceArgs
Example#5518 - Basic usage
Example#5519 - Basic usage
Example#5520 - ReflectionClass::__toString example
Example#5521 - Basic usage
Example#5522 - Filtering results by class name
Example#5523 - Filtering results by class name, with inheritance
Example#5524 - ReflectionClassConstant::isDeprecated example
Example#5525 - ReflectionClassConstant::isEnumCase example
Example#5526 - Basic usage of ReflectionConstant::getExtension
Example#5527 - Basic usage of ReflectionConstant::getExtensionName
Example#5528 - ReflectionConstant::getName example
Example#5529 - ReflectionConstant::getNamespaceName example
Example#5530 - ReflectionConstant::getShortName example
Example#5531 - ReflectionProperty::getValue example
Example#5532 - ReflectionConstant::isDeprecated example
Example#5533 - ReflectionEnum::getBackingType example
Example#5534 - ReflectionEnum::getCase example
Example#5535 - ReflectionEnum::getCases example
Example#5536 - ReflectionEnum::hasCase example
Example#5537 - ReflectionEnum::isBacked example
Example#5538 - ReflectionEnum::getValue example
Example#5539 - ReflectionEnum::getBackingValue example
Example#5540 - ReflectionExtension example
Example#5541 - ReflectionExtension::getClasses example
Example#5542 - ReflectionExtension::getClassNames example
Example#5543 - ReflectionExtension::getConstants example
Example#5544 - ReflectionExtension::getDependencies example
Example#5545 - ReflectionExtension::getFunctions example
Example#5546 - ReflectionExtension::getINIEntries example
Example#5547 - ReflectionExtension::getName example
Example#5548 - ReflectionExtension::getVersion example
Example#5549 - ReflectionExtension::info example
Example#5550 - ReflectionFunction::__construct example
Example#5551 - ReflectionFunction::invoke example
Example#5552 - ReflectionFunction::invokeArgs example
Example#5553 - ReflectionFunction::invokeArgs with references example
Example#5554 - ReflectionFunction::isAnonymous example
Example#5555 - ReflectionFunction::__toString example
Example#5556 - Basic usage with a class method
Example#5557 - Basic usage with a function
Example#5558 - Filtering results by class name
Example#5559 - Filtering results by class name, with inheritance
Example#5560 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a closure in the object context
Example#5561 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a static closure without an object context
Example#5562 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a closure in the object context
Example#5563 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a static closure without an object context
Example#5564 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a closure in the object context
Example#5565 - Example showcasing difference between ReflectionFunctionAbstract::getClosureCalledClass, ReflectionFunctionAbstract::getClosureScopeClass, and ReflectionFunctionAbstract::getClosureThis with a static closure without an object context
Example#5566 - ReflectionFunctionAbstract::getClosureUsedVariables example
Example#5567 - ReflectionFunctionAbstract::getReturnType example
Example#5568 - Usage on built-in functions
Example#5569 - ReflectionFunctionAbstract::getTentativeReturnType example
Example#5570 - ReflectionFunctionAbstract::hasReturnType example
Example#5571 - Usage on built-in functions
Example#5572 - ReflectionFunctionAbstract::hasTentativeReturnType example
Example#5573 - ReflectionFunctionAbstract::isClosure example
Example#5574 - ReflectionFunctionAbstract::isDeprecated example
Example#5575 - ReflectionMethod::__construct example
Example#5576 - ReflectionMethod::createFromMethodName example
Example#5577 - ReflectionMethod::getDeclaringClass example
Example#5578 - ReflectionMethod::getModifiers example
Example#5579 - ReflectionMethod::getPrototype example
Example#5580 - ReflectionMethod::hasPrototype example
Example#5581 - ReflectionMethod::invoke example
Example#5582 - ReflectionMethod::invokeArgs example
Example#5583 - Simple Class definition
Example#5584 - ReflectionMethod::__toString example
Example#5585 - ReflectionNamedType::isBuiltin example
Example#5586 - Using the ReflectionParameter class
Example#5587 - Basic usage
Example#5588 - Filtering results by class name
Example#5589 - Filtering results by class name, with inheritance
Example#5590 - Using the ReflectionParameter class
Example#5591 - Getting the class that declared the method
Example#5592 - Getting default values of function parameters
Example#5593 - Getting default values' constant names of function parameters
Example#5594 - ReflectionParameter::getType Usage as of PHP 7.1.0
Example#5595 - ReflectionParameter::getType Usage before PHP 7.1.0
Example#5596 - ReflectionParameter::getType Usage in PHP 8.0.0 and later
Example#5597 - ReflectionParameter::hasType example
Example#5598 - PHP 8.0.0 equivalent
Example#5599 - PHP 8.0.0 equivalent
Example#5600 - ReflectionParameter::__toString example
Example#5601 - ReflectionProperty::__construct example
Example#5602 - Getting value from private and protected properties using ReflectionProperty class
Example#5603 - Basic usage
Example#5604 - Filtering results by class name
Example#5605 - Filtering results by class name, with inheritance
Example#5606 - ReflectionProperty::getDefaultValue example
Example#5607 - ReflectionProperty::getDocComment example
Example#5608 - Multiple property declarations
Example#5609 - ReflectionProperty::getHook example
Example#5610 - ReflectionProperty::getHooks example
Example#5611 - ReflectionProperty::getRawValue example
Example#5612 - ReflectionProperty::getSettableType example
Example#5613 - ReflectionProperty::getType example
Example#5614 - ReflectionProperty::getValue example
Example#5615 - ReflectionProperty::hasDefaultValue example
Example#5616 - ReflectionProperty::hasHook example
Example#5617 - ReflectionProperty::hasHooks example
Example#5618 - ReflectionProperty::hasType example
Example#5619 - ReflectionProperty::isDefault example
Example#5620 - ReflectionProperty::isDynamic example
Example#5621 - ReflectionProperty::isFinal example
Example#5622 - ReflectionProperty::isInitialized example
Example#5623 - ReflectionProperty::isPromoted example
Example#5624 - ReflectionProperty::isVirtual example
Example#5625 - Simple Class definition
Example#5626 - ReflectionProperty::setRawValue example
Example#5627 - ReflectionProperty::setValue example
Example#5628 - ReflectionType::allowsNull example
Example#5629 - ReflectionType::__toString example
Example#5630 - ReflectionUnionType::getTypes example
Example#5631 - ReflectionGenerator::__construct example
Example#5632 - ReflectionGenerator::getExecutingFile example
Example#5633 - ReflectionGenerator::getExecutingGenerator example
Example#5634 - ReflectionGenerator::getExecutingLine example
Example#5635 - ReflectionGenerator::getFunction example
Example#5636 - ReflectionGenerator::getThis example
Example#5637 - ReflectionGenerator::getTrace example
Example#5638 - ReflectionGenerator::isClosed example
Example#5639 - ReflectionIntersectionType::getTypes example
Example#5640 - Basic ReflectionReference::getId usage
Example#5641 - boolval examples
Example#5642 - debug_zval_dump example
Example#5643 - A simple empty / isset comparison.
Example#5644 - empty on String Offsets
Example#5645 - empty on multidimensional arrays
Example#5646 - floatval Example
Example#5647 - floatval non-numeric leftmost characters Example
Example#5648 - get_debug_type example
Example#5649 - get_defined_vars Example
Example#5650 - get_resource_id produces the same result as an int cast
Example#5651 - get_resource_type example
Example#5652 - gettype example
Example#5653 - intval examples
Example#5654 - Check that variable is an array
Example#5655 - is_bool examples
Example#5656 - Checking whether a string can be called as a function
Example#5657 - Checking whether an array can be called as a function
Example#5658 - is_callable and constructors
Example#5659 - is_countable examples
Example#5660 - is_float example
Example#5661 - is_int example
Example#5662 - is_iterable examples
Example#5663 - is_null example
Example#5664 - is_numeric examples
Example#5665 - is_numeric with whitespace
Example#5666 - is_object example
Example#5667 - is_resource example
Example#5668 - is_scalar example
Example#5669 - is_string example
Example#5670 - isset Examples
Example#5671 - Example of isset with array elements
Example#5672 - isset on String Offsets
Example#5673 - print_r example
Example#5674 - return parameter example
Example#5675 - serialize example
Example#5676 - settype example
Example#5677 - strval example using PHP magic __toString() method.
Example#5678 - unserialize example
Example#5679 - unserialize_callback_func example
Example#5680 - Using unset
Example#5681 - unset a Global Variable
Example#5682 - unset with Reference
Example#5683 - unset with Static Variable
Example#5684 - unset example
Example#5685 - var_dump example
Example#5686 - var_export Examples
Example#5687 - Exporting stdClass (since PHP 7.3.0)
Example#5688 - Exporting classes
Example#5689 - Using __set_state()
Example#5690 -
Example#5691 - OAuth::fetch example
Example#5692 - OAuth::getAccessToken example
Example#5693 - OAuth::getRequestToken example
Example#5694 - OAuth::setRequestEngine example
Example#5695 - An OAuth::setRsaCertificate example
Example#5696 - OAuth::setToken example
Example#5697 - OAuthProvider::__construct example
Example#5698 - Example OAuthProvider::consumerHandler callback
Example#5699 - OAuthProvider::generateToken example
Example#5700 - OAuthProvider::is2LeggedEndpoint example
Example#5701 - Example OAuthProvider::timestampNonceHandler callback
Example#5702 - Example OAuthProvider::tokenHandler callback
Example#5703 - is_soap_fault example
Example#5704 - SOAP's standard method for error reporting is exceptions
Example#5705 - SoapClient::__construct example
Example#5706 - Using the SOAP_SINGLE_ELEMENT_ARRAYS feature
Example#5707 - SoapClient::__doRequest example
Example#5708 - SoapClient::__getFunctions example
Example#5709 - SoapClient::__getLastRequest() example
Example#5710 - SoapClient::__getLastRequestHeaders() example
Example#5711 - SoapClient::__getLastResponse() example
Example#5712 - SoapClient::__getLastResponse() example
Example#5713 - SoapClient::__getTypes example
Example#5714 - SoapClient::__setLocation example
Example#5715 - SoapClient::__setSoapHeaders example
Example#5716 - Set Multiple Headers
Example#5717 - SoapClient::__soapCall example
Example#5718 - SoapServer::addFunction example
Example#5719 - SoapServer::__construct example
Example#5720 - SoapServer::getFunctions example
Example#5721 - SoapServer::__getLastResponse() example
Example#5722 - SoapServer::handle example
Example#5723 - SoapServer::setPersistence example
Example#5724 - Some examples
Example#5725 - Some examples
Example#5726 - SoapHeader::__construct example
Example#5727 - SoapParam::__construct example
Example#5728 - SoapVar::__construct example
Example#5729 - Yar Server Example
Example#5730 - Access the server in borwser(GET request)
Example#5731 - Yar Client Example
Example#5732 - Yar Concurrent Client Example
Example#5733 - Yar_Server::__construct example
Example#5734 - Yar_Server::handle example
Example#5735 - Yar_Client::__call example
Example#5736 - Yar_Client::__construct example
Example#5737 - Yar_Client::setOpt example
Example#5738 - Yar_Concurrent_Client::call example
Example#5739 - Yar_Concurrent_Client::loop example
Example#5740 - Yar_Concurrent_Client::reset example
Example#5741 - Yar_Server_Exception::getType example
Example#5742 - Yar_Client_Exception::getType example
Example#5743 - XMLRPC client functions example
Example#5744 - XML-RPC type example
Example#5745 - A xmlrpc_set_type example
Example#5746 - For Each in ASP
Example#5747 - foreach in PHP
Example#5748 - com example (1)
Example#5749 - com example (2)
Example#5750 - dotnet example
Example#5751 - variant example
Example#5752 - Basic COMPersistHelper::saveToFile Usage
Example#5753 - COM event sink example
Example#5754 - Registering a PHP script to run as a service
Example#5755 - Unregistering a service
Example#5756 - Running as a service
Example#5757 - A win32_create_service example
Example#5758 - A win32_create_service example with dependencies
Example#5759 - A win32_create_service example with recovery
Example#5760 - A win32_delete_service example
Example#5761 - A win32_start_service_ctrl_dispatcher example
Example#5762 - book.xml
Example#5763 - Creating a new DOMAttr object
Example#5764 - DOMAttr::isId() Example
Example#5765 - Creating a new DOMCdataSection object
Example#5766 - DOMCharacterData::after example
Example#5767 - DOMCharacterData::before example
Example#5768 - DOMCharacterData::remove example
Example#5769 - DOMCharacterData::replaceWith example
Example#5770 - Creating a new DOMComment
Example#5771 - DOMDocument::adoptNode example
Example#5772 - DOMDocument::append example
Example#5773 - Creating a new DOMDocument
Example#5774 - Creating a new element and inserting it as root
Example#5775 - Passing text containing an unescaped & as value
Example#5776 - Creating a new element and inserting it as root
Example#5777 - A namespace prefix example
Example#5778 - DOMDocument::getElementById() Example
Example#5779 - Basic Usage Example
Example#5780 - Get all the XInclude elements
Example#5781 - DOMDocument::importNode example
Example#5782 - Creating a Document
Example#5783 - Creating a Document
Example#5784 - Creating a Document
Example#5785 - Creating a Document
Example#5786 - DOMDocument::prepend example
Example#5787 - Adding a new method to DOMElement to ease our code
Example#5788 - Retrieving elements as custom class
Example#5789 - Retrieving owner document
Example#5790 - Custom objects are transient
Example#5791 - DOMDocument::replaceChildren example
Example#5792 - Saving a DOM tree into a file
Example#5793 - Saving a HTML tree into a string
Example#5794 - Saving a HTML tree into a file
Example#5795 - Saving a DOM tree into a string
Example#5796 - Example of DTD validation
Example#5797 - DOMDocument::xinclude() example
Example#5798 - DOMDocumentFragment::append example
Example#5799 - Appending XML data to your document
Example#5800 - DOMDocumentFragment::prepend example
Example#5801 - DOMDocumentFragment::replaceChildren example
Example#5802 - DOMElement::after example
Example#5803 - DOMElement::append example
Example#5804 - DOMElement::before example
Example#5805 - Creating a new DOMElement
Example#5806 - DOMElement::getAttributeNames example
Example#5807 - DOMElement::insertAdjacentElement example
Example#5808 - DOMElement::insertAdjacentText example
Example#5809 - DOMElement::prepend example
Example#5810 - DOMElement::remove example
Example#5811 - DOMElement::replaceChildren example
Example#5812 - DOMElement::replaceWith example
Example#5813 - Setting an attribute
Example#5814 - DOMElement::toggleAttribute example
Example#5815 - Creating a new DOMEntityReference
Example#5816 - Creating a document with an attached DTD
Example#5817 - Testing your DOM Implementation
Example#5818 - Getting an attribute on a node
Example#5819 - Accessing attribute with array syntax
Example#5820 - Adding a child
Example#5821 - Nested children
Example#5822 - Example with XPath query
Example#5823 - DOMNode::compareDocumentPosition example
Example#5824 - DOMNode::contains example
Example#5825 - DOMNode::getLineNo example
Example#5826 - DOMNode::getNodePath example
Example#5827 - DOMNode::getRootNode example
Example#5828 - DOMNode::isEqualNode example
Example#5829 - Removing a child
Example#5830 - Traversing all the entries of the table
Example#5831 - Accessing item with array syntax
Example#5832 - Traversing items with foreach
Example#5833 - DOMParentNode::replaceChildren example
Example#5834 - Creating a new DOMProcessingInstruction object
Example#5835 - Creating a new DOMText
Example#5836 - Getting the count of all the english books
Example#5837 - Getting all the english books
Example#5838 - Matching attribute value with quotes
Example#5839 - Register a namespaced XPath function and call it from the XPath expression
Example#5840 - book.xml
Example#5841 - DOMXPath::registerPhpFunctions with php:functionString
Example#5842 - DOMXPath::registerPhpFunctions with php:function
Example#5843 - DOMXPath::registerPhpFunctions with a callable
Example#5844 - Dom\Attr::isId() Example
Example#5845 - Dom\Attr::rename example to change both the namespace and qualified name
Example#5846 - Dom\Attr::rename example to change only the qualified name
Example#5847 - Dom\CharacterData::after example
Example#5848 - Dom\CharacterData::before example
Example#5849 - Dom\CharacterData::remove example
Example#5850 - Dom\CharacterData::replaceWith example
Example#5851 - Dom\HTMLDocument::createEmpty example
Example#5852 - Dom\HTMLDocument::createFromString example
Example#5853 - Dom\ParentNode::replaceChildren example
Example#5854 - Dom\TokenList::add example
Example#5855 - Dom\TokenList::contains example
Example#5856 - Dom\TokenList::item example
Example#5857 - Dom\TokenList::remove example
Example#5858 - Dom\TokenList::replace example
Example#5859 - Dom\TokenList::toggle example
Example#5860 - Import SimpleXML into DOM with dom_import_simplexml
Example#5861 - Import SimpleXML into DOM and modify SimpleXML through DOM
Example#5862 - Import SimpleXML into DOM and modify SimpleXML through DOM
Example#5863 - A libxml_get_errors example
Example#5864 - libxml_set_external_entity_loader example
Example#5865 - A libxml_set_streams_context example
Example#5866 - A libxml_use_internal_errors example
Example#5867 - Include file examples/simplexml-data.php with XML string
Example#5868 - Getting <plot>
Example#5869 - Getting <line>
Example#5870 - Accessing non-unique elements in SimpleXML
Example#5871 - Using attributes
Example#5872 - Comparing Elements and Attributes with Text
Example#5873 - Comparing Two Elements
Example#5874 - Using XPath
Example#5875 - Setting values
Example#5876 - Adding elements and attributes
Example#5877 - DOM Interoperability
Example#5878 - Working with namespaces
Example#5879 - Loading broken XML string
Example#5880 - Add attributes and children to a SimpleXML element
Example#5881 - Add attributes and children to a SimpleXML element
Example#5882 - Get XML
Example#5883 - Using asXML() on SimpleXMLElement::xpath results
Example#5884 - Interpret an XML string
Example#5885 - Traversing a children() pseudo-array
Example#5886 - Using namespaces
Example#5887 - Create a SimpleXMLElement object
Example#5888 - Create a SimpleXMLElement object from a URL
Example#5889 - Counting the number of children
Example#5890 - Return the current element
Example#5891 - Get document namespaces
Example#5892 - Working with multiple namespaces
Example#5893 - Get XML element names
Example#5894 - Get document namespaces in use
Example#5895 - Return the sub-elements of the current element
Example#5896 - Check whether the current element has sub-elements
Example#5897 - Get the current XML tag key
Example#5898 - Move to the next element
Example#5899 - Setting a namespace prefix to use in an XPath query
Example#5900 - Rewind to the first element
Example#5901 - Get string content
Example#5902 - Check whether the current element is valid
Example#5903 - Xpath
Example#5904 - Importing a DOMDocument
Example#5905 - Importing a Dom\Document
Example#5906 - Interpret an XML document
Example#5907 - Interpret an XML string
Example#5908 - Serializing a single value with WDDX
Example#5909 - Using incremental packets with WDDX
Example#5910 - wddx_serialize_vars example
Example#5911 - Show XML Element Structure
Example#5912 - Map XML to HTML
Example#5913 - External Entity Example
Example#5914 - xmltest.xml
Example#5915 - xmltest2.xml
Example#5916 - Show XML Element Structure
Example#5917 - Chunked parsing of large XML documents
Example#5918 - xml_parse_into_struct example
Example#5919 - moldb.xml - small database of molecular information
Example#5920 - parsemoldb.php - parses moldb.xml into an array of molecular objects
Example#5921 - xml_set_object example
Example#5922 - Validating XML
Example#5923 - Creating a simple XML document
Example#5924 - Working with XML namespaces
Example#5925 - Working with the OO API
Example#5926 - Direct output of XML
Example#5927 - XMLWriter::setIndent and mixed Content
Example#5928 - Basic XMLWriter::startAttribute Usage
Example#5929 - Intermixing Sub-elements and Attributes
Example#5930 - Basic xmlwriter_write_cdata Usage
Example#5931 - collection.xml
Example#5932 - collection.xsl
Example#5933 - fruits.xml
Example#5934 - fruits.xsl
Example#5935 - Collating and printing errors
Example#5936 - Creating an XSLTProcessor
Example#5937 - Testing EXSLT support
Example#5938 - Simple PHP Function call from a stylesheet
Example#5939 - Simple PHP Function call from a stylesheet
Example#5940 - Changing the owner before the transformation
Example#5941 - Example profiling output
Example#5942 - Transforming to a DOMDocument
Example#5943 - Transforming to a Dom\Document
Example#5944 - Transforming to a HTML file
Example#5945 - Transforming to a HTML file using Dom\Document
Example#5946 - Transforming to a string
Example#5947 - Transforming to a string using Dom\Document
Example#5948 - A hidden HTML form element
Example#5949 - Data to be edited by the user
Example#5950 - In a URL
Example#5951 - Generating Javascript with PHP
Example#5952 - Example PHP/FI Code
Example#5953 - Activate full on-screen error reporting for dev. domain
Example#5954 - Add security script for protected areas
Example#5955 - Unix include_path
Example#5956 - Windows include_path
Example#5957 - Unix include_path using ${USER} env variable
Example#5958 - string.rot13
Example#5959 - string.toupper
Example#5960 - string.tolower
Example#5961 - string.strip_tags
Example#5962 - convert.base64-encode & convert.base64-decode
Example#5963 - convert.quoted-printable-encode & convert.quoted-printable-decode
Example#5964 - convert.iconv.*
Example#5965 - zlib.deflate and zlib.inflate
Example#5966 - zlib.deflate simple
Example#5967 - bzip2.compress and bzip2.decompress
Example#5968 - Encrypt/Decrypt with Blowfish
Example#5969 - Encrypt file using AES-128 CBC with SHA256 HMAC
↑
and
↓
to navigate •
Enter
to select •
Esc
to close •
/
to open