I decided to have a look at the Google Webmaster Tools. I’ve setup accounts for jsphp.co and www.progclub.org. So far I’m not very impressed at all. Maybe it’s because the accounts are just new, but there is basically no data in any of my sites, so it’s not very useful at all. I guess it’s just wait and see if data ends up being loaded or not.
Monthly Archives: December 2011
PHP krsort
Today I used the PHP function krsort for the first time. It sorts the array with keys in reverse order, which is exactly what I needed to get my version listbox options in order from latest to earliest.
Doctrine Bidirectional Mant-To-Many Associations
I found out how to do a Many-To-Many, Bidirectional mapping with Doctrine in PHP.
PHP in_array and array_keys
The PHP function in_array is a really handy way to check if a value is in an array. Combine with array_keys to check if a value is in the array keys.
The importance of !important in CSS
I found an article on !important which explains how !important works in CSS.
PHP flush
Reading a character from a string
What do you do in PHP when you want to get the character at the specified index within the string? I’m not sure what the best way is, but the way that I’ve been using is with the substr function, passing in the index and a length of one.
Trying out PHP features
I’ve added a web testing section to my jj5-test project, and its hosted on Member Net in the test directory.
Now when I want to write little things that test/demo PHP features that I’m learning about I have a place to put the code.
Testing slib ‘scriptify’ and friends
I’ve written a few little functions to help me sanitise content before including it in automatically generated JavaScript. The idea is to prevent code injection.
You can see the tests for my function in the scriptify_test.php file on ProgClub Member Net (where jsphp.co is hosted). You can view the scriptify unit tests in pcrepo.
Unit testing is fun! :)
Strings in PHP
I’ve been looking into how strings work in PHP. Basically if you use a single quote the string is literal and the only two quotes accepted are \\ for backslash and \’ for single quote.
If you use double quotes on the other hand then backslash is the quote character so you can do things like \n for new line or \t for tab. Also you can use variable names in double quotes strings. I still don’t totally understand things like magic quotes work though.