On Wed, Dec 10, 2008 at 1:13 PM, Stut <[EMAIL PROTECTED]> wrote:
>
> On 9 Dec 2008, at 23:24, Daniel Kolbo wrote:
>
> Maciek Sokolewicz wrote:
>>
>>> Daniel Kolbo wrote:
>>>
What is the preferred method with php to test and see if a file
[pattern] exists?
For example, i only n
On 9 Dec 2008, at 23:24, Daniel Kolbo wrote:
Maciek Sokolewicz wrote:
Daniel Kolbo wrote:
What is the preferred method with php to test and see if a file
[pattern] exists?
For example, i only need to search in one directory, that may have
any number of files named such as afile1.txt, afi
Daniel Kolbo wrote:
Maciek Sokolewicz wrote:
Daniel Kolbo wrote:
What is the preferred method with php to test and see if a file
[pattern] exists?
For example, i only need to search in one directory, that may have
any number of files named such as afile1.txt, afile2.txt, afile3.txt,
A
On Mon, Nov 24, 2008 at 10:02 AM, Stut <[EMAIL PROTECTED]> wrote:
> On 24 Nov 2008, at 14:41, Stan wrote:
>
>> Shouting is something that happens when people are actually speaking and
>> listening. In a medium where there is no other way to emphasize salient
>> points in a message, capitalization
On 24 Nov 2008, at 14:41, Stan wrote:
Shouting is something that happens when people are actually speaking
and
listening. In a medium where there is no other way to emphasize
salient
points in a message, capitalization is all that works. I'm sorry it
offended your sensabilities.
It's actu
On 23 Nov 2008, at 19:12, Stan wrote:
This thread began because file_exists() WILL NOT tell that a file
exists FOR
SURE and FOR CERTAIN if the file you check for happens to be named
whatever.jpg and whatever.JPG exists. I know this because IMagick
then
chokes on whatever.jpg because it DOES
Stan wrote:
This thread began because file_exists() WILL NOT tell that a file exists FOR
SURE and FOR CERTAIN if the file you check for happens to be named
whatever.jpg and whatever.JPG exists. I know this because IMagick then
chokes on whatever.jpg because it DOESN't exist.
a: you really ne
On Sun, 2008-11-23 at 13:12 -0600, Stan wrote:
> This thread began because file_exists() WILL NOT tell that a file exists FOR
> SURE and FOR CERTAIN if the file you check for happens to be named
> whatever.jpg and whatever.JPG exists. I know this because IMagick then
> chokes on whatever.jpg becau
This thread began because file_exists() WILL NOT tell that a file exists FOR
SURE and FOR CERTAIN if the file you check for happens to be named
whatever.jpg and whatever.JPG exists. I know this because IMagick then
chokes on whatever.jpg because it DOESN't exist.
--
PHP General Mailing List (h
On 23 Nov 2008, at 18:53, Stan wrote:
Let me attack this in a different way. This started because my
camera names
files whatever.JPG and my thumbnail generator generates thumbnail
files
whatever.jpg. Given my workstation (upon which I edit code and run
a web
browser) is W2K and my web serv
It could present a problem depending on how the permissions are setup
on the shared hosting and if open_base is in effect.
If they can get the /etc/shadow file from a php being ran by apache
then you have an issue, because apache would be
running as root. Take the below example.
include('templates
> > I think file_exists returns false for remote files ;)
>
> Even if it did (it doesn't:
> http://uk3.php.net/manual/en/wrappers.ftp.php), I'd still rather not let
> someone steal my /etc/passwd or /etc/shadow etc. files.
>
> As I said before. Some form of regexp or similar restriction is 1
I think file_exists returns false for remote files ;)
On Nov 15, 2007, at 2:33 AM, Colin Guthrie <[EMAIL PROTECTED]> wrote:
Instruct ICC wrote:
Date: Thu, 15 Nov 2007 00:20:52 +
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
CC: php-general@lists.php.net
Subject: Re: [PHP] file_exists
On 10/23/05, Oliver Grätz <[EMAIL PROTECTED]> wrote:
>
> I believe that the problem is not Windows being unable to look fpr unicode
> files but PHP being unable to put th unicode string correctly in the command
> line you are trying to execute. Check this by doing "exec('echo
> >test.txt'.$path);"
On Sat, October 22, 2005 7:12 pm, Jonny Bergström wrote:
> Good idea yes. But apparantly Windows couldn't do it either. :-(
>
> function file_exists_windows($path) {
> exec('dir ' . $path, $output, $return_status);
> return $return_status == 0 ? true : false; // Windows dir will return
> 0 when
> s
Good idea yes. But apparantly Windows couldn't do it either. :-(
function file_exists_windows($path) {
exec('dir ' . $path, $output, $return_status);
return $return_status == 0 ? true : false; // Windows dir will return 0 when
something was found
}
It works with "normal" ascii file names, but oth
Robert Cummings schrieb:
> You could try execing a shell command to give you the answer. I don't
> know if it'll work, but worth a shot if you're in a bind.
Yep, good idea. Use the native code of the OS ofr listing the file (dir,
ls...) and parse the result.
OLLi
"Manche sagen, Compu
On Sat, 2005-10-22 at 19:19, Oliver Grätz wrote:
> Jonny Bergström schrieb:
> > Hi
> >
> > file_exists('字.gif') always returns false.
> >
> > Can anyone help me find out a way to make it work also for these kind of
> > filenames?
> >
> Unicode filenames can't be properly handled up to now for al
On Thursday 20 November 2003 13:05, Chris Williams wrote:
> Thanks, but it make the test to move on to other things like,
> size($filename) which tells me the file does not exist.
print_r($_FILES)
--
Jason Wong -> Gremlins Associates -> www.gremlins.biz
Open Source Software Systems Integrators
*
19 matches
Mail list logo