1
vote
In PHP, is there a way to capture the output of a PHP file into a variable without using output buffering?
A little known feature of PHP is being able to treat an included/required file like a function call, with a return value.
For example:
// myinclude.php
$value = 'foo';
$othe …
2
votes
How to debug in VI
See the link on using xdebug with vim that someone else posted for a full debugger, but as an extra tip you can do this from vim to run syntax check on the current PHP script:
:!php …
2
votes
PHP Multiple Occurences Of Words Within A String
<?php
$words = preg_split('\b', $string, PREG_SPLIT_NO_EMPTY);
$wordsUnique = array_unique($words);
if (count($words) != count($wordsUnique)) {
echo 'Duplicate word found!';
}
?>
…
0
votes
Problem with PHP Array
The main reason is because unlike some languages like Python and JavaScript, Array() (or in fact array()) is not an object, but an language construct which creates an inbu …
6
votes
Formatting PHP Code within Vim
Quick way to fix PHP indentation in vim is to visually select the lines you want to work with using shift-v, and then press equals (=) to trigger auto-formatting.
As for other formatting is …
0
votes
Fast Loading web pages
A project which helps with a few of the points in Yahoo!'s guidelines (http://developer.yahoo.com/performance/rules.html …
0
votes
0
votes
RTF Library - PHPrtf Has anyone used it?
Looking at the source for PHPrtf it looks like the author has forgotten to include regular line breaks. They've included DOS style line endings, "\r\n", which creates an RTF paragraph (\par), but n …
0
votes
php function to split an array at each blank line?
You could do it by splitting first on the blank line and then on new lines, e.g.:
$file = $target_path;
$fileData = file_get_contents($file) or die('Could not read file!');
$parts = …
