Changeset 3268
- Timestamp:
- Nov 4, 2008, 4:56:18 AM (12 years ago)
- Location:
- libcaca/trunk/caca-php/examples
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/caca-php/examples/cacapig.php
r3172 r3268 17 17 */ 18 18 19 if (php_sapi_name() != "cli") { 20 die("You have to run this program with php-cli!\n"); 21 } 19 22 20 23 $pig_str = <<<EOT -
libcaca/trunk/caca-php/examples/colors.php
r3260 r3268 17 17 * http://sam.zoy.org/wtfpl/COPYING for more details. 18 18 */ 19 20 if (php_sapi_name() != "cli") { 21 die("You have to run this program with php-cli!\n"); 22 } 19 23 20 24 $cv = caca_create_canvas(80, 24); -
libcaca/trunk/caca-php/examples/fullwidth.php
r3257 r3268 18 18 * http://sam.zoy.org/wtfpl/COPYING for more details. 19 19 */ 20 21 if (php_sapi_name() != "cli") { 22 die("You have to run this program with php-cli!\n"); 23 } 20 24 21 25 define('CACA', "쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊"); -
libcaca/trunk/caca-php/examples/render.php
r3150 r3268 1 1 #!/usr/bin/php5 2 2 <? 3 4 if (php_sapi_name() != "cli") { 5 die("You have to run this program with php-cli!\n"); 6 } 3 7 4 8 $pig_str = <<<EOT -
libcaca/trunk/caca-php/examples/truecolor.php
r3219 r3268 18 18 * http://sam.zoy.org/wtfpl/COPYING for more details. 19 19 */ 20 21 if (php_sapi_name() != "cli") { 22 die("You have to run this program with php-cli!\n"); 23 } 20 24 21 25 $cv = caca_create_canvas(32, 16);
Note: See TracChangeset
for help on using the changeset viewer.