11
votes
How do you strip out the domain name from a URL in php?
parse_url turns a URL into an associative array:
php > $foo = "http://www.example.com/foo/bar?hat=bowler&accessory=cane";
php > $blah = parse_url($foo);
php > print_r($ …
3
votes
Generating a unique ID in PHP
uniqid() is what you're looking for in most practical situations.
You can make it even more "uniq" by adding a large random number after it.
…
2
votes
PHP: mysql_connect() won’t work via command line
While it may be a rudimentary answer, make sure you have the most up to date PHP client, and make sure that it's looking at the same PHP folder that you're working out of through Apache.
If …
0
votes
Strict HTML Validation and Filtering in PHP
The W3C has a big open-source package for validating HTML available here:
http://validator.w3.org/
You can download the package …
1
vote
SEO google keyword position tools?
Don't forget rankings vary data center to data center, and are trending more towards being tweaked towards your specific search and browsing history.
Not to sell you anything, but what you …
2
votes
Robust, Mature HTML Parser for PHP
Simple HTML Dom is a great open-source parser:
http://simplehtmldom.sourceforge.net/
It treats dom elements in a …
0
votes
PHP equivalent of friend or internal
I'm pretty sure what you're looking for is "protected" or "private", depending on your use case.
If you're defining an function in a class, and you only want it available to itself, you'll …
3
votes
Auto generation of META tags in PHP
The problems you're considering are twofold: one of keyword extraction and one of document summarization. The first, which I'd obviously use for keywords has a very simple naive approach: pick th …
1
vote
How do you convert a page-based PHP application to MVC?
In making a move like this, you're not just changing the implementation of a particular site, but rather changing the way in which it's perceived. You're going to have to do a hefty bit of recodin …
1
vote
PHP largest interval array
I'm assuming the 0th item in the array can be taken as a sort of "key". Splice the 1st and 2nd arrays, and put them each in an array this key holds. At the same time, make another array with the …
0
votes
interactive console for Ruby, PHP
Make sure you have php5-cli installed and type 'php -a' at the command line.
…
0
votes
PHP/RegEx - Logic for prepending table names
I don't know if a regular expression is a good idea here. I'd say it'd be worth the minimal amount of increased computational complexity to perform the validation yourself in PHP. Then, should yo …
2
votes
PHP variable variables
php > for ($i=0; $i<5; $i++)
{ ${"thing{$i}"} = $i; }
php > echo $thing1;
1
php > echo $thing2;
2
php > echo $thing3;
3
Note that we're using the d …
3
votes
Shell output not being fully retrieved by PHP!
Try running stream_get_contents() on $handle. It's a better way to work with resources where you don't know the exact size of what you're trying to retrieve.
…
2
votes
To use a PHP framework or not?
One of the great perks of PHP frameworks are that they minimize reinventing the wheel in a great number of common web application needs. Security issues, graceful exception handling, RESTful URLs, …
