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