"PHP phpversion()"의 두 판 사이의 차이

5번째 줄: 5번째 줄:
<?php
<?php
var_dump( phpversion() );
var_dump( phpversion() );
</syntaxhighlight>
<syntaxhighlight lang='php' run>
<?php
// prints e.g. 'Current PHP version: 4.1.1'
echo 'Current PHP version: ' . phpversion();
// prints e.g. '2.0' or nothing if the extension isn't enabled
echo phpversion('tidy');
</syntaxhighlight>
</syntaxhighlight>



2021년 1월 4일 (월) 16:59 판

1 개요

PHP phpversion()
<?php
var_dump( phpversion() );

2 같이 보기

3 참고

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