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