Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
cacalabs
/
libcaca
miroir de
https://github.com/cacalabs/libcaca.git
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Versions
7
Wiki
Activité
Parcourir la source
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
il y a 16 ans
Parent
415b54902d
révision
fee77cac00
5 fichiers modifiés
avec
19 ajouts
et
0 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+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
Voir le fichier
@@ -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
Voir le fichier
@@ -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
Voir le fichier
@@ -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
Voir le fichier
@@ -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
Voir le fichier
@@ -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");
Écrire
Aperçu
Chargement…
Annuler
Enregistrer