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