php json 설치

· 13년 전 · 1230
 
 
 
php json 설치
 
 
 
tar xvjf php-json-ext-1.2.1.tar.bz2
 
cd php-json-ext-1.2.1
./configure
make
 
cd modules/
cp -pv json.so /usr/lib/php/modules/
 
php.ini
 
extension_dir = "/usr/lib/php/modules"
extension=json.so
 
아파치 재시작
 
/usr/local/apache/bin/apachectl graceful
 
 
php -i | grep json
json
json support => enabled
json version => 1.2.1
 
 
 
php test.php
{"test":100}
 
cat test.php
<?
$val = array("test"=>100);
$out = json_encode($val);
echo $out;
?>
 
|
댓글을 작성하시려면 로그인이 필요합니다.

팁게시판

디자인과 관련된 유용한 정보를 공유하세요. 질문은 상단의 QA에서 해주시기 바랍니다.

+
제목 글쓴이 날짜 조회
13년 전 조회 475
13년 전 조회 1,400
13년 전 조회 369
13년 전 조회 419
13년 전 조회 736
13년 전 조회 528
13년 전 조회 450
13년 전 조회 579
13년 전 조회 582
13년 전 조회 426
13년 전 조회 2,229
13년 전 조회 1,326
13년 전 조회 1,231
13년 전 조회 432
13년 전 조회 395
13년 전 조회 480
13년 전 조회 719
13년 전 조회 512
13년 전 조회 1,085
13년 전 조회 1,166
13년 전 조회 883
13년 전 조회 1,902
13년 전 조회 2,231
13년 전 조회 5,507
13년 전 조회 422