This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function get_directory_structure($dirpath){ | |
$ar = array(); | |
$dh = opendir($dirpath); | |
while($entry = readdir($dh)){ | |
if($entry != "." && $entry != ".."){ | |
if(is_dir($dirpath.DIRECTORY_SEPARATOR.$entry)) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* void render(string $template, array $vars = NULL) | |
* | |
*/ | |
function render($template, $vars = NULL){ | |
if($vars != NULL){ | |
foreach($vars as $name => $val){ | |
$$name = $val; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.swp | |
*~ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine on | |
RewriteRule guestbook/(.*)/(.*) /github/solutiile%20mele%20yap/guestbook/index.php?$1=$2 | |
http://localhost:88/github/solutiile%20mele%20yap/guestbook/index.php?show=text |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[paullik@localhost peej-phpdoctor-67c1af0]$ php -f phpdoc.php yacms.ini | |
Reading file "/media/PauLLiK/localhost/github/yaCMS/src/global_const.php" | |
Parsing tokensPHP Fatal error: Call to undefined method RootDoc::packageName() in /home/paullik/Downloads/peej-phpdoctor-67c1af0/classes/phpDoctor.php on line 902 | |
Fatal error: Call to undefined method RootDoc::packageName() in /home/paullik/Downloads/peej-phpdoctor-67c1af0/classes/phpDoctor.php on line 902 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Default configuration file for PHPDoctor | |
; This config file will cause PHPDoctor to generate API documentation of | |
; itself. | |
; PHPDoctor settings | |
; ----------------------------------------------------------------------------- | |
; Names of files to parse. This can be a single filename, or a comma separated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[paullik@localhost phpdoctor]$ php phpdoc.php yacms.ini | |
Reading file "/media/PauLLiK/localhost/github/yaCMS/src/functions.php" | |
Parsing tokensPHP Fatal error: Call to undefined method RootDoc::packageName() in /media/PauLLiK/localhost/github/phpdoctor/classes/phpDoctor.php on line 902 | |
Fatal error: Call to undefined method RootDoc::packageName() in /media/PauLLiK/localhost/github/phpdoctor/classes/phpDoctor.php on line 902 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Default configuration file for PHPDoctor | |
; This config file will cause PHPDoctor to generate API documentation of | |
; itself. | |
; PHPDoctor settings | |
; ----------------------------------------------------------------------------- | |
; Names of files to parse. This can be a single filename, or a comma separated |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "./kitty_actions.c" | |
void main(void){ | |
kitty jerry; | |
jerry = bornCat("jerry"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include "./kitty_actions.c" | |
void main(void){ | |
kitty jerry; | |
jerry = bornCat("jerry"); |
OlderNewer