dcousineau
|
Registered User
|
LAMP developer that likes to dabble in everything in his spare time.
|
|
Dec 3 |
awarded | ● Student |
|
Nov 18 |
comment |
Simple PHP ORM Dear god people, he made a valid suggestion that fit within the OP's parameters. Does ADODB suck? Maybe. Was it off topic or factually wrong? No. Don't down vote a guy because you disagree with his answer, down vote if the answer is factually incorrect or off topic. You sir get a +1 to round this suggestion back up to 0. |
|
Oct 6 |
answered | Recursive function best practices; What are they? |
|
Oct 6 |
comment |
Help in getting Hour and Minute in PHP This is deprecated. You need to set your timezone in the actual PHP script (there's a strict error thrown when you don't). php.net/date-default-timezone-set is the function you should use when setting your timezone in your PHP script. |
|
Oct 6 |
comment |
Why does PHP 5 use __contruct() instead of className() as constructor? @Click Upvote: __autoload() doesn't instantiate a class, so frankly it doesn't care whether you use __construct(), CLASSNAME(), or ignore the constructor completely. All __autoload() does is if a class is NOT defined, it reads the file that defines it. It's up to you to use the new keyword or whatever. |
|
Oct 6 |
comment |
How to do word wrapping. This is the best solution. Even using the wordwrap() function (php.net/wordwrap) will not help as HTML will collapse whitespace and will treat it the same (of course you could wrap it in <pre> tags but then I'd just be getting pedantic). |
|
Oct 1 |
accepted | Are there any alternatives to the MVC frameworks for PHP that would be considard best practice? |
|
Sep 23 |
answered | How to flush output in ZF |
|
Sep 23 |
comment |
PHP variables maintaining an URL string. If you don't want to listen to me, get on IRC: freenode.net #phpc. The PHP core maintainers, as well as pillars of the PHP community all congregate there and will all tell you the same thing, most from personal experience going down the same road of "oh it's just one quick hack and it's a private tool" |
|
Sep 23 |
comment |
PHP variables maintaining an URL string. Your analogy is bad. You're asking me to put rocket fuel in your Ford Taurus, and I'm telling you that while it might be possible, you want either an actual jet or plain old E87 gasoline. Industry standard practice for what you are trying to achieve is a centralized version control repository so your devs can have their own checked out copies of your loader.php file. Look into bit bucket and spend your time automating updates rather than going down ugly hack road. My route will at least give you a tool for other future logistics. |
|
Sep 23 |
comment |
PHP variables maintaining an URL string. Then shared drive is your best solution. I would HIGHLY suggest trusting the wisdom of the core PHP team, the community at large, and the entire software security industry and find a real, long term stable solution rather than a horribly dirty hack. But it's your funeral. |
|
Sep 23 |
comment |
PHP variables maintaining an URL string. I don't know the cut off version, but PHP by default disables remote file inclusion. |
|
Sep 23 |
answered | PHP variables maintaining an URL string. |
|
Sep 23 |
awarded | ● Yearling |
|
Sep 15 |
comment |
Are there any alternatives to the MVC frameworks for PHP that would be considard best practice? Even pure MVC doesn't preclude libraries and other abstractions. MVC by definition is the code execution path only flows between models, views, and controllers with those areas only performing certain tasks. Technically a 3rd party library for physics calculation would be considered a model, as (contrary to some popular belief) a model is not exclusively a table gateway class as some frameworks might lead one to believe. |
|
Sep 15 |
revised |
Are there any alternatives to the MVC frameworks for PHP that would be considard best practice? Xeoncross pointed something out that I left out |
|
Sep 15 |
comment |
Are there any alternatives to the MVC frameworks for PHP that would be considard best practice? Xeoncross: hmm, I thought I had added that in (I had a long post I was writing then scrapped it and wrote the shorter version)... |
|
Sep 14 |
answered | PHP, alternating weeks logic |
|
Sep 14 |
comment |
PHP, alternating weeks logic @scragar: PHP is an interpreted language, meaning there are bottlenecks in the system that render any tiny optimizations you make moot. PHP is not built for sub-millisecond speed, it's built for ease of development and maintenence. google.com/search?q=premature+optimization/… |
|
Sep 14 |
awarded | ● Citizen Patrol |
|
Sep 14 |
answered | Are there any alternatives to the MVC frameworks for PHP that would be considard best practice? |
|
Aug 28 |
comment |
Possible types of $_POST and $_GET values File uploads are not present in $_POST or $_GET, you have to check $_FILES for information on file uploads (and even then the contents are still arrays and strings). |
|
Aug 28 |
comment |
Some ORM using PDO? My 2 cents: Doctrine all the way. |
|
Aug 28 |
answered | Problems with special characters in php soap client |
|
Aug 28 |
comment |
Why does my localization cookie seem to not want to change? Or better yet, to make things clearer, pick one of the two locations as the "Canonical language source" and have all your language changing code based off of that one source alone. Then you have the other source override. E.g. make $_GET the canonical source, so you have a small blurb of include's, and above that if $_GET is not present, have the cookie override and set $_GET with its default contents. |
|
Aug 27 |
answered | What could cause a failure in PHP serialize function? |
|
Aug 27 |
comment |
What could cause a failure in PHP serialize function? You can serialize almost anything, including built in PHP objects (they're still objects, just provided by the core). However, you are correct, you CANNOT serialize resources. Since the OP refers to data objects not serializing, I have a feeling said objects contain connection resources to the DB. |
|
Aug 27 |
answered | Count Similar Array Keys |
|
Aug 27 |
comment |
video on website with php From personal experience, definitely learn how to manipulate ffmpeg from the command line. Also look into forking a process off into the background, video conversion will take god awful forever and you don't want the user waiting 30 minutes with a continually loading page. |
|
Aug 25 |
revised |
Hidden Features of PHP? added 33 characters in body |
|
Aug 25 |
comment |
PHP StdClass Object accessing a$b @inakiabt: Double quotes will cause php to try and replace "$title" with the contents of $title, which in his case will probably be null. Using the single quotes prevents you from having to escape the $ and tells PHP to interpret the string literally, not do variable substitution. |
|
Aug 25 |
accepted | PHP StdClass Object accessing a$b |
|
Aug 25 |
comment |
PHP date() in foreign languages - e.g. Mar 25 Aoû 09 This is the correct/PHP way of handling locale in date strings. strftime() is preferred over date() when you need to account for locale. |
|
Aug 25 |
answered | PHP StdClass Object accessing a$b |
|
Aug 21 |
comment |
PHP Image Resize & My upload script. Chris B.: The secure part on your end is making sure the file you're about to operate on is an uploaded file and you've checked the mime types. But frankly all you really need to do is watching the gd functions when opening the image. If gd chokes on the image, it wasn't a valid image so delete it. |
|
Aug 11 |
comment |
Drupal Module Add Menu Item To Primary Links? It works! Thanks! |
|
Aug 11 |
comment |
Drupal Module Development hook_menu() For Semi Static Pages Never mind, I added a new menu entry with just access (now have access and access/% pointing to their respective functions). It works now! |
|
Aug 11 |
comment |
Drupal Module Development hook_menu() For Semi Static Pages Now when I change it to $items['access/%'] = //... it still no longer shows up in the menu list... |
|
Aug 10 |
comment |
Drupal Module Development hook_menu() For Semi Static Pages @ceejayoz I don't have a building_load() function as I was just loading it in the callback function. Would it be better if I just dropped it to % or created a building_load()? |
|
Aug 10 |
awarded | ● Scholar |
|
Aug 10 |
comment |
Drupal Module Add Menu Item To Primary Links? It will not be released to the public, but hearing that I can't without a database query that's enough of an answer for me. |
|
Aug 10 |
asked | Drupal Module Add Menu Item To Primary Links? |
|
Aug 10 |
asked | Drupal Module Development hook_menu() For Semi Static Pages |
|
Jul 30 |
awarded | ● Necromancer |
|
Jul 22 |
answered | Object Orientated Common Methods: Interfaces, Abstract, or something else. |
|
Jun 23 |
comment |
Mapping PHP and Flex Objects. @artlung the service browser in AMFPHP is a stand alone Flash app that the OP should be able to easily grab from the AMFPHP download and use as a debugging tool. |
|
Jun 23 |
comment |
Hidden Features of PHP? To reinforce JW, scalar types are not supported when type-hinting (except for arrays), however all types are supported when type-casting. |
|
Jun 23 |
comment |
Hidden Features of PHP? You don't have to use a defined constant as a default value. The following is also perfectly valid: function foot($param1, $default = array('key'=>'value'), $default_s = 'String', $default_i = 10, $default_b = false). However you are correct in noting you can't use a variable as a default argument. |
|
Jun 23 |
comment |
Hidden Features of PHP? Your example is misleading. The code you provide is doing type-casting which supports scalar types. (int)$i will return an int (and not a string representation), as well as (Bar)$i will return a Bar or failure.
Type hinting is done at the function definition level (function foo($a, array $b, Bar $c)) and only supports hinting arrays and objects. |
|
Jun 23 |
comment |
Hidden Features of PHP? @OIS the purpose of his example was to illustrate and compare the running of a quick regex match, not how to find the string "cat" in "one cat". |
