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