├── .gitignore ├── Makefile ├── README ├── aspis_project.py ├── aspis_prototypes.php ├── aspis_tests.py ├── ast.c ├── ast.h ├── ast_array.c ├── ast_array.h ├── ast_improver.c ├── ast_improver.h ├── ast_parser.c ├── ast_parser.h ├── ast_transformer.c ├── ast_transformer.h ├── do_measurements.py ├── file_structures.c ├── file_structures.h ├── misc ├── all_results1.txt ├── all_results2.txt ├── all_results3.txt ├── all_results4.txt ├── all_results5.txt ├── all_wordpress_methods.txt ├── calc_percentile.php ├── drop_wordpress_tables.sql ├── fused.txt ├── fused_sort.php └── posturl.php ├── my_main.c ├── my_main.h ├── php_function_headers ├── php_function_reference-060516.pdf ├── php_function_reference.txt ├── php_function_reference_sorted.txt ├── php_functions_reference_sorted_easy.txt └── sort.php ├── php_parser.y ├── php_scanner.l ├── phplib ├── AspisLibrary.php ├── AspisMain.php ├── AspisObject.php ├── AspisTaints.php ├── php_functions.txt ├── php_functions_overriden.txt ├── php_functions_overriden_partial.txt └── php_functions_reference_sorted_easy.txt └── tests ├── taint_propagation ├── calc_taint_graph.php ├── generic.categories ├── test_partial_basic_p1.prototypes ├── test_partial_basic_p1.tainted ├── test_partial_basic_p2.prototypes ├── test_partial_basic_p2.tainted ├── test_partial_globals.prototypes ├── test_partial_globals.tainted ├── test_partial_libcalls.prototypes ├── test_partial_libcalls.tainted ├── test_partial_references.prototypes ├── test_partial_references.tainted ├── test_partial_sources.prototypes ├── test_partial_sources.tainted ├── test_partial_untainted.prototypes ├── test_partial_untainted.tainted ├── test_partial_variablecalls.prototypes ├── test_partial_variablecalls.tainted ├── wordpress-untainted.tainted └── wordpress.prototypes ├── test_categories_dynamic_methods.php ├── test_categories_simple.php ├── test_partial_basic_p1.php ├── test_partial_basic_p2.php ├── test_partial_globals.php ├── test_partial_libcalls.php ├── test_partial_references.php ├── test_partial_sources.php ├── test_partial_untainted.php ├── test_partial_variablecalls.php ├── test_tags.php ├── test_tags1.php ├── test_toy_alternativecontrolstructs.php ├── test_toy_arrays.php ├── test_toy_arrays2.php ├── test_toy_arrays_crazy.php ├── test_toy_assign.php ├── test_toy_classes.php ├── test_toy_classes_internal.php ├── test_toy_classes_this.php ├── test_toy_constants.php ├── test_toy_dynamic_functions.php ├── test_toy_emptyisset.php ├── test_toy_exceptions.php ├── test_toy_functions.php ├── test_toy_functions_internal.php ├── test_toy_functions_unhandled.php ├── test_toy_hello_world.php ├── test_toy_inc.inc ├── test_toy_inc.php ├── test_toy_ints.php ├── test_toy_list.php ├── test_toy_require.php ├── test_toy_stmts.php ├── test_toy_string_indexing.php ├── test_toy_strings.php ├── test_toy_strings2.php ├── test_toy_strreplace.php ├── test_toy_superglobals.php ├── test_toy_template.php ├── test_toy_variable_variables.php ├── test_toy_xcrement.php ├── test_toy_xml.php ├── test_wordpress.php ├── test_wordpress2.php ├── test_www_alternate-row-colors.php ├── test_www_arraymultisort.php ├── test_www_arrayscomplex.php ├── test_www_arraysperrow.php ├── test_www_calculator.php ├── test_www_counter.php ├── test_www_date.php ├── test_www_datepicker.php ├── test_www_directory-list-with-exec.php ├── test_www_directory-structure-to-list.php ├── test_www_email.php ├── test_www_file-informations.php ├── test_www_human-readable-size.php ├── test_www_keep-selected-combobox.php ├── test_www_lastmodified.php ├── test_www_line-by-line.php ├── test_www_loadingtime.php ├── test_www_open-file.php ├── test_www_prime-numbers.php ├── test_www_read-and-select-csv.php ├── test_www_read-file.php ├── test_www_recursive-directory-listing.php ├── test_www_simple-bar-chart.php ├── test_www_string-autolink.php ├── test_www_string-compare.php ├── test_www_string-insert-at-specific-location.php ├── test_www_string-number-to-words.php ├── test_www_string-replace.php ├── test_www_string-string-to-columns.php ├── test_www_string-substring-examples.php ├── test_www_string-summarize-article.php ├── test_www_strip-file-extension.php ├── test_www_time.php ├── test_www_timestamppassed.php ├── test_www_view-php-source.php └── test_www_write-to-first-line-of-file.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/README -------------------------------------------------------------------------------- /aspis_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/aspis_project.py -------------------------------------------------------------------------------- /aspis_prototypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/aspis_prototypes.php -------------------------------------------------------------------------------- /aspis_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/aspis_tests.py -------------------------------------------------------------------------------- /ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast.c -------------------------------------------------------------------------------- /ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast.h -------------------------------------------------------------------------------- /ast_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_array.c -------------------------------------------------------------------------------- /ast_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_array.h -------------------------------------------------------------------------------- /ast_improver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_improver.c -------------------------------------------------------------------------------- /ast_improver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_improver.h -------------------------------------------------------------------------------- /ast_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_parser.c -------------------------------------------------------------------------------- /ast_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_parser.h -------------------------------------------------------------------------------- /ast_transformer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_transformer.c -------------------------------------------------------------------------------- /ast_transformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/ast_transformer.h -------------------------------------------------------------------------------- /do_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/do_measurements.py -------------------------------------------------------------------------------- /file_structures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/file_structures.c -------------------------------------------------------------------------------- /file_structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/file_structures.h -------------------------------------------------------------------------------- /misc/all_results1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/all_results1.txt -------------------------------------------------------------------------------- /misc/all_results2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/all_results2.txt -------------------------------------------------------------------------------- /misc/all_results3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/all_results3.txt -------------------------------------------------------------------------------- /misc/all_results4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/all_results4.txt -------------------------------------------------------------------------------- /misc/all_results5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/all_results5.txt -------------------------------------------------------------------------------- /misc/all_wordpress_methods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/all_wordpress_methods.txt -------------------------------------------------------------------------------- /misc/calc_percentile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/calc_percentile.php -------------------------------------------------------------------------------- /misc/drop_wordpress_tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/drop_wordpress_tables.sql -------------------------------------------------------------------------------- /misc/fused.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/fused.txt -------------------------------------------------------------------------------- /misc/fused_sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/fused_sort.php -------------------------------------------------------------------------------- /misc/posturl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/misc/posturl.php -------------------------------------------------------------------------------- /my_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/my_main.c -------------------------------------------------------------------------------- /my_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/my_main.h -------------------------------------------------------------------------------- /php_function_headers/php_function_reference-060516.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_function_headers/php_function_reference-060516.pdf -------------------------------------------------------------------------------- /php_function_headers/php_function_reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_function_headers/php_function_reference.txt -------------------------------------------------------------------------------- /php_function_headers/php_function_reference_sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_function_headers/php_function_reference_sorted.txt -------------------------------------------------------------------------------- /php_function_headers/php_functions_reference_sorted_easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_function_headers/php_functions_reference_sorted_easy.txt -------------------------------------------------------------------------------- /php_function_headers/sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_function_headers/sort.php -------------------------------------------------------------------------------- /php_parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_parser.y -------------------------------------------------------------------------------- /php_scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/php_scanner.l -------------------------------------------------------------------------------- /phplib/AspisLibrary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/AspisLibrary.php -------------------------------------------------------------------------------- /phplib/AspisMain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/AspisMain.php -------------------------------------------------------------------------------- /phplib/AspisObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/AspisObject.php -------------------------------------------------------------------------------- /phplib/AspisTaints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/AspisTaints.php -------------------------------------------------------------------------------- /phplib/php_functions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/php_functions.txt -------------------------------------------------------------------------------- /phplib/php_functions_overriden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/php_functions_overriden.txt -------------------------------------------------------------------------------- /phplib/php_functions_overriden_partial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/php_functions_overriden_partial.txt -------------------------------------------------------------------------------- /phplib/php_functions_reference_sorted_easy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/phplib/php_functions_reference_sorted_easy.txt -------------------------------------------------------------------------------- /tests/taint_propagation/calc_taint_graph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/calc_taint_graph.php -------------------------------------------------------------------------------- /tests/taint_propagation/generic.categories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/generic.categories -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_basic_p1.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_basic_p1.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_basic_p1.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_basic_p1.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_basic_p2.prototypes: -------------------------------------------------------------------------------- 1 | >functions 2 | >methods 3 | -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_basic_p2.tainted: -------------------------------------------------------------------------------- 1 | >functions 2 | test_partial_basic_p2.php 3 | >classes 4 | -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_globals.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_globals.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_globals.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_globals.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_libcalls.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_libcalls.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_libcalls.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_libcalls.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_references.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_references.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_references.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_references.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_sources.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_sources.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_sources.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_sources.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_untainted.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_untainted.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_untainted.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_untainted.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_variablecalls.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_variablecalls.prototypes -------------------------------------------------------------------------------- /tests/taint_propagation/test_partial_variablecalls.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/test_partial_variablecalls.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/wordpress-untainted.tainted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/wordpress-untainted.tainted -------------------------------------------------------------------------------- /tests/taint_propagation/wordpress.prototypes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/taint_propagation/wordpress.prototypes -------------------------------------------------------------------------------- /tests/test_categories_dynamic_methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_categories_dynamic_methods.php -------------------------------------------------------------------------------- /tests/test_categories_simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_categories_simple.php -------------------------------------------------------------------------------- /tests/test_partial_basic_p1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_basic_p1.php -------------------------------------------------------------------------------- /tests/test_partial_basic_p2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_basic_p2.php -------------------------------------------------------------------------------- /tests/test_partial_globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_globals.php -------------------------------------------------------------------------------- /tests/test_partial_libcalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_libcalls.php -------------------------------------------------------------------------------- /tests/test_partial_references.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_references.php -------------------------------------------------------------------------------- /tests/test_partial_sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_sources.php -------------------------------------------------------------------------------- /tests/test_partial_untainted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_untainted.php -------------------------------------------------------------------------------- /tests/test_partial_variablecalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_partial_variablecalls.php -------------------------------------------------------------------------------- /tests/test_tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_tags.php -------------------------------------------------------------------------------- /tests/test_tags1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_tags1.php -------------------------------------------------------------------------------- /tests/test_toy_alternativecontrolstructs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_alternativecontrolstructs.php -------------------------------------------------------------------------------- /tests/test_toy_arrays.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_arrays.php -------------------------------------------------------------------------------- /tests/test_toy_arrays2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_arrays2.php -------------------------------------------------------------------------------- /tests/test_toy_arrays_crazy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_arrays_crazy.php -------------------------------------------------------------------------------- /tests/test_toy_assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_assign.php -------------------------------------------------------------------------------- /tests/test_toy_classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_classes.php -------------------------------------------------------------------------------- /tests/test_toy_classes_internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_classes_internal.php -------------------------------------------------------------------------------- /tests/test_toy_classes_this.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_classes_this.php -------------------------------------------------------------------------------- /tests/test_toy_constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_constants.php -------------------------------------------------------------------------------- /tests/test_toy_dynamic_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_dynamic_functions.php -------------------------------------------------------------------------------- /tests/test_toy_emptyisset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_emptyisset.php -------------------------------------------------------------------------------- /tests/test_toy_exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_exceptions.php -------------------------------------------------------------------------------- /tests/test_toy_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_functions.php -------------------------------------------------------------------------------- /tests/test_toy_functions_internal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_functions_internal.php -------------------------------------------------------------------------------- /tests/test_toy_functions_unhandled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_functions_unhandled.php -------------------------------------------------------------------------------- /tests/test_toy_hello_world.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /tests/test_toy_inc.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /tests/test_toy_inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_inc.php -------------------------------------------------------------------------------- /tests/test_toy_ints.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_ints.php -------------------------------------------------------------------------------- /tests/test_toy_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_list.php -------------------------------------------------------------------------------- /tests/test_toy_require.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_toy_stmts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_stmts.php -------------------------------------------------------------------------------- /tests/test_toy_string_indexing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_string_indexing.php -------------------------------------------------------------------------------- /tests/test_toy_strings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_strings.php -------------------------------------------------------------------------------- /tests/test_toy_strings2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_strings2.php -------------------------------------------------------------------------------- /tests/test_toy_strreplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_strreplace.php -------------------------------------------------------------------------------- /tests/test_toy_superglobals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_superglobals.php -------------------------------------------------------------------------------- /tests/test_toy_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_template.php -------------------------------------------------------------------------------- /tests/test_toy_variable_variables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_variable_variables.php -------------------------------------------------------------------------------- /tests/test_toy_xcrement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_xcrement.php -------------------------------------------------------------------------------- /tests/test_toy_xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_toy_xml.php -------------------------------------------------------------------------------- /tests/test_wordpress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_wordpress.php -------------------------------------------------------------------------------- /tests/test_wordpress2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_wordpress2.php -------------------------------------------------------------------------------- /tests/test_www_alternate-row-colors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_alternate-row-colors.php -------------------------------------------------------------------------------- /tests/test_www_arraymultisort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_arraymultisort.php -------------------------------------------------------------------------------- /tests/test_www_arrayscomplex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_arrayscomplex.php -------------------------------------------------------------------------------- /tests/test_www_arraysperrow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_arraysperrow.php -------------------------------------------------------------------------------- /tests/test_www_calculator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_calculator.php -------------------------------------------------------------------------------- /tests/test_www_counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_counter.php -------------------------------------------------------------------------------- /tests/test_www_date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_date.php -------------------------------------------------------------------------------- /tests/test_www_datepicker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_datepicker.php -------------------------------------------------------------------------------- /tests/test_www_directory-list-with-exec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_directory-list-with-exec.php -------------------------------------------------------------------------------- /tests/test_www_directory-structure-to-list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_directory-structure-to-list.php -------------------------------------------------------------------------------- /tests/test_www_email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_email.php -------------------------------------------------------------------------------- /tests/test_www_file-informations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_file-informations.php -------------------------------------------------------------------------------- /tests/test_www_human-readable-size.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_human-readable-size.php -------------------------------------------------------------------------------- /tests/test_www_keep-selected-combobox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_keep-selected-combobox.php -------------------------------------------------------------------------------- /tests/test_www_lastmodified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_lastmodified.php -------------------------------------------------------------------------------- /tests/test_www_line-by-line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_line-by-line.php -------------------------------------------------------------------------------- /tests/test_www_loadingtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_loadingtime.php -------------------------------------------------------------------------------- /tests/test_www_open-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_open-file.php -------------------------------------------------------------------------------- /tests/test_www_prime-numbers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_prime-numbers.php -------------------------------------------------------------------------------- /tests/test_www_read-and-select-csv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_read-and-select-csv.php -------------------------------------------------------------------------------- /tests/test_www_read-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_read-file.php -------------------------------------------------------------------------------- /tests/test_www_recursive-directory-listing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_recursive-directory-listing.php -------------------------------------------------------------------------------- /tests/test_www_simple-bar-chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_simple-bar-chart.php -------------------------------------------------------------------------------- /tests/test_www_string-autolink.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-autolink.php -------------------------------------------------------------------------------- /tests/test_www_string-compare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-compare.php -------------------------------------------------------------------------------- /tests/test_www_string-insert-at-specific-location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-insert-at-specific-location.php -------------------------------------------------------------------------------- /tests/test_www_string-number-to-words.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-number-to-words.php -------------------------------------------------------------------------------- /tests/test_www_string-replace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-replace.php -------------------------------------------------------------------------------- /tests/test_www_string-string-to-columns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-string-to-columns.php -------------------------------------------------------------------------------- /tests/test_www_string-substring-examples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-substring-examples.php -------------------------------------------------------------------------------- /tests/test_www_string-summarize-article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_string-summarize-article.php -------------------------------------------------------------------------------- /tests/test_www_strip-file-extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_strip-file-extension.php -------------------------------------------------------------------------------- /tests/test_www_time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_time.php -------------------------------------------------------------------------------- /tests/test_www_timestamppassed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_timestamppassed.php -------------------------------------------------------------------------------- /tests/test_www_view-php-source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_view-php-source.php -------------------------------------------------------------------------------- /tests/test_www_write-to-first-line-of-file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpapayan/aspis/HEAD/tests/test_www_write-to-first-line-of-file.php --------------------------------------------------------------------------------