[PHP] return string size in bytes

2004-06-12 Thread PHP4web
I now there are function to calc file size but I want function to get string size in 
bytes

Re: [PHP] Newbie Question: Variables on the fly

2004-05-28 Thread PHP4web
ok let say that you have 2 or more variables with same name but there are
difference in numbering And Values like this :

$var1 = 1 ;
$var2 =  12 ;
// etc ..

now you must now how much of number of this varibles before you deal with it
or you must store it on array to know how to count it in the fly like this :

$var[var1] = 1;
$var[var2] = 12;
// etc ..
$var_count  = count($var); // give you the count

now you can deal with vars like this :

$i = 1;
do {
$NewVar[NewVar.$i] = $var[var.$i] * $WhatEver ;
$i++;
}
while ($i = $var_count );

And finally you can extract vars by extract() to make them in normal shape
if you get my point

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Friday, May 28, 2004 8:01 AM
Subject: RE: [PHP] Newbie Question: Variables on the fly


 Thanks for the reply Denis,

 Let me elaborate a bit.

 I have a php page which I want to pass a series of variables via a url
string.

 eg

 myPage.php?dataPoint1=10dataPoint2=20dataPoint3=30

 The thing is I won;t know until runtime how many dataPoints there will be
 so I have also included 1 additional url variable

 eg

 myPage.php?totalDataPoints=3dataPoint1=10dataPoint2=20dataPoint3=30

  From there I want to take those data points and do several things with
 each of them.  The keep things simple lets say I want to multiply each by
3
 and then divide it by 2 and put it into a new variable (under the same
 naming system).

 eg

 $xtemp=$HTTP_GET_VARS[totalDataPoints];

 do {
  A line here which will take each dataPoint and multiply by 3 and
 divide by 2 and assign it to a new variable with the same numbering system
 (eg $myNewVar1=$HTTP_GET_VARS[dataPoint1]*3/2;
  $xtemp--;
 } while ($xtemp0);

 Make any more sense?

 Thanks.


 At 01:24 AM 28/05/2004, Dennis Seavers wrote:
 Maybe others will catch on to your intention, but I think you need to
 provide a bit more information.  For example, what variables do you want
to
 create (drawn from a file source, or create on the fly)?  Where will they
 come from (a database, perhaps)?  You could create a script that creates
 variables from scratch, following a (hopefully) finite mathematical
 formula.  Or you could manipulate data that already exists, turning this
 data into some kind of variables.
 
 Ultimately, you'll have to give a better of sense of the end result you'd
 like.
 
 Dennis Seavers
 
 
   [Original Message]
   From: [EMAIL PROTECTED]
   To: PHP List [EMAIL PROTECTED]
   Date: 05/27/2004 9:17:11 PM
   Subject: [PHP] Newbie Question: Variables on the fly
  
   Hello,
  
   I'm sure this is a newbie question but I don't know the syntax.
  
   I want to create a series of variables within a php script at runtime
 with
   a for loop.
  
   eg
  
   myVar1
   myVar2
   myVar3
   etc
  
   What is the proper syntax to do this?
  
   Thanks,
  
   Tim
  
   --
   PHP General Mailing List (http://www.php.net/)
   To unsubscribe, visit: http://www.php.net/unsub.php
 
 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php

 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Create Password for EXISTING PDF FILE

2004-04-30 Thread PHP4Web
My country do not support news:// I can not do that
Are you sure there are no way to do that with php
- Original Message - 
From: Evan Nemerson [EMAIL PROTECTED]
To: PHP4Web [EMAIL PROTECTED]
Sent: Friday, April 30, 2004 7:28 AM
Subject: Re: [PHP] Create Password for EXISTING PDF FILE


 On Thursday 29 April 2004 05:47 pm, PHP4Web wrote:
  I want to create password to an existing pdf file
  How can I do that with PHP

 You'll probably need to use an external utility from the command line- ask
 over on news://comp.text.pdf

 -- 
 Evan Nemerson
 [EMAIL PROTECTED]
 http://coeusgroup.com/en



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Create Password for EXISTING PDF FILE

2004-04-29 Thread PHP4Web
I want to create password to an existing pdf file
How can I do that with PHP