Re: [PHP] System errno in PHP

2008-02-24 Thread Michal Maras
; > Having PHP expose these useful constants in a portable manner would be > a big plus. > > Thanks, > Ravi > > > On Thu, Feb 21, 2008 at 9:04 AM, Richard Lynch <[EMAIL PROTECTED]> wrote: > > On Wed, February 20, 2008 2:56 am, Michal Maras wrote: > > > I ha

Re: [PHP] System errno in PHP

2008-02-20 Thread Michal Maras
ked, or if it is on read only filesystems or if limit of opened fil was reached ... Similar problem can be with fseek, fread,... By On 20/02/2008, Stut <[EMAIL PROTECTED]> wrote: > > Michal Maras wrote: > > I have read http://php.net/fopen from top to bottom, but I could not &

Re: [PHP] System errno in PHP

2008-02-20 Thread Michal Maras
o open stream: Permission denied but I need integer number not string, because string error messages depends on locale setting. Of course, I can test some conditions before fopen, but it is not enough for me. By On 19/02/2008, Nick Stinemates <[EMAIL PROTECTED]> wrote: > > Michal Mar

Re: [PHP] System errno in PHP

2008-02-19 Thread Michal Maras
I am now using filesystem functions fopen, fread, fclose, ... On 19/02/2008, Stut <[EMAIL PROTECTED]> wrote: > > Michal Maras wrote: > > Coud somebody tell me if it is possible to get integer value of > variable > > which name in C is errno end in perl $!. > > I

Re: [PHP] System errno in PHP

2008-02-19 Thread Michal Maras
Hi I am asking about errno for Filesystems functions like fopen, fread, fclose, ... On 19/02/2008, Stut <[EMAIL PROTECTED]> wrote: > > Michal Maras wrote: > > Coud somebody tell me if it is possible to get integer value of > variable > > which name in C is errno en

[PHP] System errno in PHP

2008-02-19 Thread Michal Maras
Hello everybody Coud somebody tell me if it is possible to get integer value of variable which name in C is errno end in perl $!. I am PHP beginner so I am sorry if question is 'stupid'. By