View Full Version : Hey
I am currently making a gallery and have come a long way.
What I want to do now is:
$title=$name
where $name is file-with-dashes.jpg
Now I want $title to be $name with dashes replaced with spaces and .jpg removed.
I have shortened text before but never chopped off the ending...
NTLDR
04-02-2004, 01:38 PM
$title = substr(str_replace('-', ' ', $name), 0, -4);
Should do it.
thanks man! I'll post a link to the gallery here once it's done.
Boofo
04-02-2004, 01:44 PM
$title = substr(str_replace('-', ' ', $name), 0, -4);
Should do it.
I'm curious, what is the 0 and the -4 in this code for?
NTLDR
04-02-2004, 01:45 PM
The 0 is the start position and the -4 is the end position, ie chop 4 characters off the end.
http://uk.php.net/substr
Boofo
04-02-2004, 01:47 PM
Oh, ok, you mean like chop off the .jpg or .gif?
NTLDR
04-02-2004, 01:50 PM
Yep :)
Boofo
04-02-2004, 01:57 PM
Thanks! See? Even an old dog can learn new tricks. ;)
What if I want to display the first word that comes before a dash?
like:
file-with-dashes.jpg = file
NTLDR
04-02-2004, 02:10 PM
$parts = explode('-', $name);
$file = $parts[0];
<?php
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != "..") {
echo "$file\n";
}
}
closedir($handle);
}
?>
How do I exclude index.php from this? and if possible anything other than folders.
Dean C
04-02-2004, 04:26 PM
www.php.net/is_dir function checks for directories :)
Yup I figured it out. I used the readdir function.
How do I get rid of those dots? Also how do I sort this alphabetically?
<?php
$path = "."; // even "."
if ($dir = @opendir($path)) {
while (($file = readdir($dir)) !== false) {
if (is_dir($path."/".$file)) {
echo $file."<br />";
}
}
closedir($dir);
}
?>
Displays:
.
..
Ford
Infiniti
Mercedes
BMW
Nissan
Volvo
Well I did an extremely crude fix:
<?php
$path = "."; // even "."
if ($dir = @opendir($path)) {
while (($file = readdir($dir)) !== false) {
if (is_dir($path."/".$file)) {
$title = str_replace('.', '<img width=0 height=0 border=0>', $file);
echo "<a href=\"$file/\">$title<a/><br>";
}
}
closedir($dir);
}
?>
Velocd
04-02-2004, 09:34 PM
The 2nd argument of str_replace can be blank. You can substitute the first argument with an empty string, instead of using an image tag (which makes no sense).
No if I put a space in the br's have effect, but if there is 0 pix images there is nothing to <br>
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.