codeless / jugglecode
A tool to manipulate PHP statements in scriptfiles
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 3 576
Dependents: 13
Suggesters: 0
Security: 0
Stars: 27
Watchers: 4
Forks: 4
Open Issues: 2
Requires
- codeless/logmore: >=0.8.3
- nikic/php-parser: >=0.9.2
Replaces
- codeless/scriptjoiner: >=0.0.0
This package is not auto-updated.
Last update: 2023-09-16 07:50:29 UTC
README
JuggleCode is a tool to manipulate PHP statements in scriptfiles.
Features
JuggleCode can:
- Join multiple PHP files into a single outfile
- Remove comments from PHP files
- Oppress or replace function and method calls in PHP scripts
Usage
JuggleCode always expects a PHP script as input. The output is redirected to stdout per default, but can get captured to a file.
Example: the two files file1.php and file2.php form a PHP application and should get distributed in one file only (with the name app.php).
file1.php:
<?php
# file1.php:
echo 'File 1',PHP_EOL;
require('file2.php');
file2.php:
<?php
# file2.php:
echo 'File 2',PHP_EOL;
To combine these two files into app.php, a short PHP scripts needs to be written:
require('vendor/codeless/jugglecode/src/JuggleCode.php');
$j = new JuggleCode();
$j->masterfile = 'file1.php';
$j->outfile = 'app.php';
$j->mergeScripts = true;
$j->run();
The first three lines of the above script can get combined to:
$j = new JuggleCode('file1.php', 'app.php');
The result of the merging-process will look like this:
<?php
# file1.php:
echo 'File 1',PHP_EOL;
# file2.php:
echo 'File 2',PHP_EOL;
Be aware that -- when $mergeScripts is enabled -- only scripts that are identified as PHP-scripts (by their extension) are merged into the outfile! Files with the extension .inc are not merged.
It is also possible to merge only specific files. Imagine the following script.php:
<?php
require('lib.php');
require('debug.php');
# ...
To only join script.php with lib.php, run:
<?php
$j = new JuggleCode();
$j->masterfile = 'script.php';
$j->outfile = 'app.php';
$j->mergeFile('lib.php');
$j->run();
The output would be:
<?php
# Contents of lib.php
# ...
require('debug.php');
# ...
Dynamic inclusion of files is left intact, even if mergeScripts is enabled:
# This will not change:
$file = 'somedata';
require($file . '.txt');
To disable comments in the output, use:
$j->comments = false;
Oppress function- and method-calls:
$j->oppressFunctionCall('str_replace'); # Oppress all calls to str_replace
$j->oppressMethodCall('$foo', 'foo'); # Oppress all calls to $foo->foo()
$j->oppressMethodCall('Foo', 'foo'); # Oppress all calls to Foo::foo()
Replace function- and method-calls:
# Replace all calls to str_replace with str_ireplace:
$j->replaceFunctionCall('str_replace', 'str_ireplace(%args%)');
# Replace all calls to $foo->foo() with foo():
$j->replaceMethodCall('$foo', 'foo', 'foo(%args%)');
Installation
JuggleCode is easily installed using Packagist/Composer.
Ideas for using JuggleCode
- Deploying PHP applications in a single file and in different versions: one version with included debugging features, the other version without
Ideas for improving JuggleCode
- Allow the creation of single-file PHP patch-scripts that can overwrite PHP statements in one or multiple other PHP files
- Oppressing or replacing the body of function or method definitions (replaceMethodBody, replaceFunctionBody)
- Improve the code by seperating the JuggleCode class into multiple classes, e.g one for methods, one for functions, asf.
- Convert JuggleCode to a PHP extension (see PHP Preprocessors like http://www.ohloh.net/p/pihipi and http://code.metala.org/p/ccpp)
- Find empty functions and methods; automatically oppress definitions of those and also the calls
- Generate templateable scripts from a non-templateable PHP scriptfile
Alternatives to JuggleCode
Credits and Bugreports
JuggleCode was written by Codeless (http://www.codeless.at/). All bugreports can be directed to more@codeless.at. Even better, bugreports are posted on the github-repository of this package: https://www.github.com/codeless/jugglecode. JuggleCode would not have been possible if there isn't nikic's PHP-Parser package: https://www.github.com/nikic/php-parser.
License
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License: http://creativecommons.org/licenses/by-sa/3.0/deed.en_US