4
votes
MVC tutorial that doesn’t rely on a framework?
Try this great article: The no-framework PHP MVC framework. It's not a substitute for an int …
0
votes
What’s quicker and better to determine if an array key exists in PHP?
Obviously the second example is clearer in intent, there's no question about it. To figure out what example #1 does, you need to be familiar with PHP's variable initialization idiosyncracies - and …
3
votes
PHP Send mail error
You PHP installation (XAMPP, by the looks of it) does not support SSL. Ensure that the line
extension=php_openssl.dll
is not commented out in your php.ini …
4
votes
can cURL be used to read php code from php files?
No, it cannot. All cURL does is access an URL just like you would access it using a browser. If you can read the PHP source with a browser, so can cURL, if not, then not.
…
4
votes
How can I get around the lack of a finally block in PHP?
Solution, no. Irritating cumbersome workaround, yes:
$stored_exc = null;
try {
// Do stuff
} catch ($exc) {
$stored_exc = $exc;
// Handle an error
}
// "Finally" here, c …
