"Fossies" - the Fresh Open Source Software Archive

Member "php-8.0.28-src/ext/skeleton/tests/001.phpt" (14 Feb 2023, 230 Bytes) of package /windows/www/php-8.0.28-src.zip:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PHP source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file.

    1 --TEST--
    2 Check if %EXTNAME% is loaded
    3 --SKIPIF--
    4 <?php
    5 if (!extension_loaded('%EXTNAME%')) {
    6     echo 'skip';
    7 }
    8 ?>
    9 --FILE--
   10 <?php
   11 echo 'The extension "%EXTNAME%" is available';
   12 ?>
   13 --EXPECT--
   14 The extension "%EXTNAME%" is available