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