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