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