php Programming Glossary: problematic
Strategy for supporting unicode & multi language in PHP5 http://stackoverflow.com/questions/1085093/strategy-for-supporting-unicode-multi-language-in-php5 don't need to worry about anything. It's only getting problematic once you start mixing encodings throughout your app. If you're..
Mysql password hashing method old vs new http://stackoverflow.com/questions/1892607/mysql-password-hashing-method-old-vs-new stuck using old incompatible stuff it will continue to be problematic. If that's not an option what about a joint automated process..
sending mail with php & escaping hotmails junk folder http://stackoverflow.com/questions/250234/sending-mail-with-php-escaping-hotmails-junk-folder or am i looking in the wrong place i knew this might be problematic hence why i chose to use the PEAR mail class rather than rolling..
UTF-8 BOM signature in PHP files http://stackoverflow.com/questions/2558172/utf-8-bom-signature-in-php-files it's not that bad but I'm concerned because the only problematic scenarios I read about involved PHP files. And since I'm writing..
What kinds of patterns could I enforce on the code to make it easier to translate to another programming language? http://stackoverflow.com/questions/3455456/what-kinds-of-patterns-could-i-enforce-on-the-code-to-make-it-easier-to-translat code and fix problems. Ideally the translator should flag problematic translations. Before you ask What the hell is the point of this..
PHP MySql and geolocation http://stackoverflow.com/questions/3606139/php-mysql-and-geolocation bunch of transcendental functions. This is going to be problematic when you have a large number of rows to filter on. Here's an..
Process mathematical equations in php http://stackoverflow.com/questions/4019418/process-mathematical-equations-in-php turn them into equations however this sounds expensive and problematic. The other option is to pass them through eval but I'm not a..
How can public fields “break lazy loading” in Doctrine 2? http://stackoverflow.com/questions/4090609/how-can-public-fields-break-lazy-loading-in-doctrine-2 how making associated collections public could be problematic I do make these private and wrap them but how is this an issue..
How To Remove All DtDdWrappers and Labels on Zend Form Elements http://stackoverflow.com/questions/4191216/how-to-remove-all-dtddwrappers-and-labels-on-zend-form-elements want to be wrapped in the dd dt tags which can be a bit problematic. To solve this issue I create a class that extends from Zend_Form..
PHP: “Notice: Undefined variable” and “Notice: Undefined index” http://stackoverflow.com/questions/4261133/php-notice-undefined-variable-and-notice-undefined-index on the default value of an uninitialized variable is problematic in the case of including one file into another which uses the..
How to keep json_encode() from dropping strings with invalid characters http://stackoverflow.com/questions/4663743/how-to-keep-json-encode-from-dropping-strings-with-invalid-characters illegal in the target charset. So by first removing the problematic characters in theory json_encode shouldnt get anything it will..
PHP Session Fixation / Hijacking http://stackoverflow.com/questions/5081025/php-session-fixation-hijacking it in something like _SESSION 'remote_ip' . This may be problematic from some ISPs that use multiple IP addresses for their users..
Conversion from Simplified to Traditional Chinese http://stackoverflow.com/questions/5998607/conversion-from-simplified-to-traditional-chinese if these aren't handled. Technical terms may be more problematic or less depending on the era in which the terms became commonly..
PHP/PDO/MySQL: inserting into MEDIUMBLOB stores bad data http://stackoverflow.com/questions/6346319/php-pdo-mysql-inserting-into-mediumblob-stores-bad-data appreciated. UPDATE The default MySQL charset on the problematic server is utf8 it's latin1 on the others. The problem is solved..
Creating a threaded private messaging system like facebook and gmail http://stackoverflow.com/questions/6420264/creating-a-threaded-private-messaging-system-like-facebook-and-gmail risk of update anomallies so the redundancy is not too problematic. If you use this ERD then the query for most recent message..
Is there a speed difference between <?php echo $var; ?> and <?=$var?>? http://stackoverflow.com/questions/662891/is-there-a-speed-difference-between-php-echo-var-and-var nada. var requires short tags activated. Short tags are problematic within XML because is also markup for XML processing tag. So..
Find the last element of an array while using a foreach loop in PHP http://stackoverflow.com/questions/665135/find-the-last-element-of-an-array-while-using-a-foreach-loop-in-php iterate over an array using a foreach loop. This becomes problematic when you need to take some decision in my case to append or..
Avoid DOMDocument XML warnings in php http://stackoverflow.com/questions/7082401/avoid-domdocument-xml-warnings-in-php cause PHP to disable error logging too. Xeon06 solution is problematic because you're effecting the entire script error handler for..
php singleton database connection, is this code bad practice? http://stackoverflow.com/questions/9227400/php-singleton-database-connection-is-this-code-bad-practice make unit testing of classes that depend on the singleton problematic because you can't easily replace the singleton with a mock...
Connecting to WS-Security protected Web Service with PHP http://stackoverflow.com/questions/953639/connecting-to-ws-security-protected-web-service-with-php with a reference to the local WSDL. This solution can be problematic if the WSDL document changes as you have to detect the change..
|