php json 설치

· 13년 전 · 1232
 
 
 
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년 전 조회 477
13년 전 조회 1,403
13년 전 조회 370
13년 전 조회 420
13년 전 조회 740
13년 전 조회 528
13년 전 조회 451
13년 전 조회 580
13년 전 조회 586
13년 전 조회 429
13년 전 조회 2,229
13년 전 조회 1,327
13년 전 조회 1,233
13년 전 조회 434
13년 전 조회 395
13년 전 조회 484
13년 전 조회 719
13년 전 조회 514
13년 전 조회 1,088
13년 전 조회 1,168
13년 전 조회 887
13년 전 조회 1,905
13년 전 조회 2,233
13년 전 조회 5,507
13년 전 조회 426