Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
cacalabs
/
libcaca
réplica de
https://github.com/cacalabs/libcaca.git
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
7
Wiki
Actividad
Explorar el Código
force cli on remaining examples so that apache doesn't pop up a window
(this actually happens with the cocoa driver!)
tags/v0.99.beta17
Ben Wiley Sittler
bsittler
hace 16 años
padre
415b54902d
commit
fee77cac00
Se han
modificado 5 ficheros
con
19 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+3
-0
caca-php/examples/cacapig.php
+4
-0
caca-php/examples/colors.php
+4
-0
caca-php/examples/fullwidth.php
+4
-0
caca-php/examples/render.php
+4
-0
caca-php/examples/truecolor.php
+ 3
- 0
caca-php/examples/cacapig.php
Ver fichero
@@ -16,6 +16,9 @@
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/
if (php_sapi_name() != "cli") {
die("You have to run this program with php-cli!\n");
}
$pig_str = <<<EOT
+ 4
- 0
caca-php/examples/colors.php
Ver fichero
@@ -17,6 +17,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/
if (php_sapi_name() != "cli") {
die("You have to run this program with php-cli!\n");
}
$cv = caca_create_canvas(80, 24);
if(!$cv)
{
+ 4
- 0
caca-php/examples/fullwidth.php
Ver fichero
@@ -18,6 +18,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/
if (php_sapi_name() != "cli") {
die("You have to run this program with php-cli!\n");
}
define('CACA', "쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊쫊");
$cv = caca_create_canvas(0, 0);
+ 4
- 0
caca-php/examples/render.php
Ver fichero
@@ -1,6 +1,10 @@
#!/usr/bin/php5
<?
if (php_sapi_name() != "cli") {
die("You have to run this program with php-cli!\n");
}
$pig_str = <<<EOT
_._ _..._ .-', _.._(`))
+ 4
- 0
caca-php/examples/truecolor.php
Ver fichero
@@ -18,6 +18,10 @@
* http://sam.zoy.org/wtfpl/COPYING for more details.
*/
if (php_sapi_name() != "cli") {
die("You have to run this program with php-cli!\n");
}
$cv = caca_create_canvas(32, 16);
if(!$cv) {
die("Failed to create canvas\n");
Escribir
Vista previa
Cargando…
Cancelar
Guardar