CF PHP 확장모듈 확인

(CF PHP 모듈 확인에서 넘어옴)
CF PHP 모듈 확인

1 사전작업[ | ]

2 index.php 수정[ | ]

root@zetawiki:~/my-php-app1# vi index.php
<?php
print_r(get_loaded_extensions());

3 cf push[ | ]

root@zetaknow:~/my-php-app1# cf push
Using manifest file /root/my-php-app1/manifest.yml
... (생략)
     state     since                    cpu    memory         disk           details
#0   running   2016-08-10 11:31:36 AM   2.5%   22.6M of 32M   124.7M of 1G

4 확인[ | ]

root@zetawiki:~/my-php-app1# curl -s https://my-php-app1.devpack.co.kr
Array
(
    [0] => Core
    [1] => date
    [2] => ereg
    [3] => libxml
    [4] => pcre
    [5] => sqlite3
    [6] => bcmath
    [7] => calendar
    [8] => ctype
    [9] => dom
    [10] => filter
    [11] => hash
    [12] => iconv
    [13] => intl
    [14] => json
    [15] => bz2
    [16] => posix
    [17] => Reflection
    [18] => SPL
    [19] => SimpleXML
    [20] => session
    [21] => standard
    [22] => tokenizer
    [23] => xml
    [24] => xmlreader
    [25] => xmlwriter
    [26] => mysqlnd
    [27] => cgi-fcgi
    [28] => zlib
    [29] => Phar
    [30] => curl
    [31] => mcrypt
    [32] => mhash
)

5 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}