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