0
votes
What’s the best way to separate PHP Code and HTML?
You can use a template system like Smarty or you could use a framework like CakePH …
0
votes
How to Truncate a string in PHP to the word closest to a certain number of characters?
I would use the preg_match function to do this, as what you want is a pretty simple expression.
$matches = array();
$result = preg_match("/^(.{1,199})[\s]/i", $text, $matches);
…
1
vote
What is your preferred tool stack for PHP development in the Windows Environment?
It took me a while to find Windows tools that I liked too.
For my editor, I use E which is an imitation of TextMate for Windows. Fo …
0
votes
Does PHP feature short hand syntax for objects?
There is no object shorthand in PHP, but you can use Javascript's exact syntax, provided you use the json_encode and …
11
votes
What are PHP’s advantages over Ruby on Rails and Django?
There are a few advantages of PHP. One is the ease of deployment, you write your script and upload. Done.
Another is the huge function library, with support for SQL databases, JSON, XML par …
0
votes
What tools do web developers use with PHP, Ruby on Rails, Python, etc?
Database MySQL, CouchDB, SQLite
Source Control Git
Editor TextAdept, E …
2
votes
How to use twitter api with “http basic auth”?
Whenever you want to use HTTP basic auth with anything, if you want to ignore the actual implementation and HTTP headers, just use cURL. Here's a …
2
votes
php security
Yes, you do. Just because you or I can't immediately think of a way to take advantage of that little bit of code doesn't mean a more clever person can't. What you want to do is make sure that the r …
0
votes
php methods defined outside class?
Here is a terrible, ugly, hack that should never be used. But, you asked for it!
class Bar {
function __call($name, $args) {
call_user_func_array(sprintf('%s_%s', get_cl …
