On 17 October 2011 22:57, Don Wieland wrote:
> select timediff(cast(out_1 as time), cast(in_1 as time)) tHours FROM
> lm_tc_trans WHERE tc_trans_id = '42'
Can you try ...
SELECT
CAST
(
TIMEDIFF
(
CAST(Out_1 A
Hey Tim,
I got a select string:
select timediff(cast(out_1 as time), cast(in_1 as time)) tHours FROM
lm_tc_trans WHERE tc_trans_id = '42'
result = 08:45:00
How do i convert that to a FLOAT (5,2) = 8.75
or
result = 08:15:00
How do i convert that to a FLOAT (5,2) = 8.25
Don Wieland
--
There's an interesting discussion on this page.
http://www.linuxquestions.org/questions/linux-software-2/pdf-to-png-converter-57142/
Cheers,
Curtis
Sean Kenny wrote:
> Outside
the box a bit, but is there perhaps a web-service that does
>
this, something like http://www.thumbalizr.com/ but for
Outside the box a bit, but is there perhaps a web-service that does
this, something like http://www.thumbalizr.com/ but for PDF files. As
long as you had curl or something you would be GTG at that point.
-Sean-
On Thu, Jun 16, 2011 at 1:48 PM, Brian Dunning wrote:
> I have heard back from Racks
I have heard back from Rackspace and ImageMagick is not going to happen for the
time being, but they say Ghostscript is installed. Is it possible to do this
completely with GS without ImageMagick? The PDFs are text only.
On Jun 15, 2011, at 2:28 AM, Richard Quadling wrote:
> I use PDF2PNG as t
On 15 June 2011 00:00, Tamara Temple wrote:
>
> On Jun 14, 2011, at 5:48 PM, Brian Dunning wrote:
>
>> The PDFs are text only (white text on transparent background). I made them
>> using the FPDF, which was tedious to set up but works great. I've since
>> learned that I need PNG images, not PDFs.
On Jun 14, 2011, at 5:48 PM, Brian Dunning wrote:
The PDFs are text only (white text on transparent background). I
made them using the FPDF, which was tedious to set up but works
great. I've since learned that I need PNG images, not PDFs. I know
that I could rebuild them using GD, but it's
The PDFs are text only (white text on transparent background). I made them
using the FPDF, which was tedious to set up but works great. I've since learned
that I need PNG images, not PDFs. I know that I could rebuild them using GD,
but it's a lot of strings of text wrapping and formatting and th
Will they allow you to recompile PHP
http://www.php.net/manual/en/imagick.installation.php
Richard L. Buskirk
-Original Message-
From: Tamara Temple [mailto:tamouse.li...@gmail.com]
Sent: Tuesday, June 14, 2011 6:18 PM
To: PHP-General List
Subject: Re: [PHP] Convert a PDF to a PNG
On Jun 14, 2011, at 3:37 PM, Brian Dunning wrote:
My server has GD but NOT ImageMagick. Can I convert a PDF doc to a
PNG? I have the PDFs stored as a files and I need to save an
identical PNG alongside each.
Could you install a copy of ImageMagick in a user/hosted directory?
--
PHP Gene
On 14 June 2011 22:30, Brian Dunning wrote:
> The server does not have that software installed either. :-(
>
> On Jun 14, 2011, at 1:53 PM, Richard Quadling wrote:
>
>> I do that using an external tool pdf2png. For me, I use Cygwin.
>>
>
>
Can you see what pdf tools ARE installed?
Are the PDFs
The server does not have that software installed either. :-(
On Jun 14, 2011, at 1:53 PM, Richard Quadling wrote:
> I do that using an external tool pdf2png. For me, I use Cygwin.
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On 14 June 2011 21:37, Brian Dunning wrote:
> My server has GD but NOT ImageMagick. Can I convert a PDF doc to a PNG? I
> have the PDFs stored as a files and I need to save an identical PNG alongside
> each.
I do that using an external tool pdf2png. For me, I use Cygwin.
Works very well for me
My server has GD but NOT ImageMagick. Can I convert a PDF doc to a PNG? I have
the PDFs stored as a files and I need to save an identical PNG alongside each.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Thu, Oct 21, 2010 at 11:45 PM, Micky Hulse wrote:
> Hmmm, I wonder if I am going about this all wrong.
OMG, too easy:
my_method(hexdec('0x' . $base))
How did I miss that!?! I could swear I tried that earlier.
Sorry to bug ya'll!
Cheers,
Micky
--
PHP General Mailing List (http://www.php.n
Hi Adam! Many thanks for you quick reply and for the help. :)
On Thu, Oct 21, 2010 at 11:31 PM, Adam Richardson
> In your second example, you're directly inputing a hex number, so there's no
> issue.
Interesting... I wish I could just input the hex directly,
unfortunately I don't have that option
On Fri, Oct 22, 2010 at 1:05 AM, Micky Hulse wrote:
> Hi,
>
> I must be tired because I can't figure this out... I am sure it is
> something obvious.
>
> I need to pass a hex value to a method, but I can't figure out how to
> convert a hex string to a hex value.
>
> For exmaple:
>
> $base = '96989
Hi,
I must be tired because I can't figure this out... I am sure it is
something obvious.
I need to pass a hex value to a method, but I can't figure out how to
convert a hex string to a hex value.
For exmaple:
$base = '96989b'
my_method('0x' . $base)
The above does not work with my_method().
On 17 July 2010 12:47, Mohd Shakir bin Zakaria wrote:
> Hi,
>
> I've been trying to convert this excel date to the date time format,
> but only managed to get it up to the seconds;
>
> The following code;
>
> #
> $data=39604.62164;
> date("Y-m-d",mktime(0,0,0,1,$data-1,1900));
> #
On Sat, 2010-07-17 at 19:47 +0800, Mohd Shakir bin Zakaria wrote:
> Hi,
>
> I've been trying to convert this excel date to the date time format,
> but only managed to get it up to the seconds;
>
> The following code;
>
> #
> $data=39604.62164;
> date("Y-m-d",mktime(0,0,0,1,$data-1,1900)
Hi,
I've been trying to convert this excel date to the date time format,
but only managed to get it up to the seconds;
The following code;
#
$data=39604.62164;
date("Y-m-d",mktime(0,0,0,1,$data-1,1900));
#
will give this output
2008-06-05
changing it to
date("H-i-s",m
At 12:35 AM +0300 6/4/10, Tanel Tammik wrote:
Hi,
does anyone know how to convert all files in a directory and in it's
subdirectories into utf8 encoding? i am using komodo edit as text-editor.
may it has a feature which i cannot find...
Br
Tanel
Hi Tanel:
Check out:
http://www.w3.org/Intern
I bank on Notepad++ (open source editor) to do such a thing. It can convert
an ASCI file to UTF -8.
Give it a shot.
On Fri, Jun 4, 2010 at 2:02 PM, Richard Quadling wrote:
> On 3 June 2010 22:35, Tanel Tammik wrote:
> > Hi,
> >
> > does anyone know how to convert all files in a directory and in
On 3 June 2010 22:35, Tanel Tammik wrote:
> Hi,
>
> does anyone know how to convert all files in a directory and in it's
> subdirectories into utf8 encoding? i am using komodo edit as text-editor.
> may it has a feature which i cannot find...
>
> Br
> Tanel
>
>
>
> --
> PHP General Mailing List (h
Hi,
does anyone know how to convert all files in a directory and in it's
subdirectories into utf8 encoding? i am using komodo edit as text-editor.
may it has a feature which i cannot find...
Br
Tanel
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.ne
Dear Sir/Madam
Please unsubscribe Angus Mann angusm...@pobox.com from your database. My
husband passed away 6 May 2010.
Thank you
Sonya Mann
- Original Message -
From: "tedd"
To:
Sent: Monday, May 31, 2010 12:20 AM
Subject: Re: [PHP] Convert UTF-8 to PHP defines
A
At 10:20 PM +0200 5/29/10, Nisse =?utf-8?Q?Engstr=C3=B6m?= wrote:
On Sat, 29 May 2010 10:16:39 -0400, tedd wrote:
At 7:15 AM +0200 5/29/10, Nisse =?utf-8?Q?Engstr=C3=B6m?= wrote:
No. There are no glyphs in Unicode. This is spelled out for
you in chapter 2, figure 2-2. "Characters versus Glyp
On Sat, 29 May 2010 10:16:39 -0400, tedd wrote:
> At 7:15 AM +0200 5/29/10, Nisse =?utf-8?Q?Engstr=C3=B6m?= wrote:
>>
>>No. There are no glyphs in Unicode. This is spelled out for
>>you in chapter 2, figure 2-2. "Characters versus Glyphs".
> Code points are simply unique numbers assigned to speci
At 7:15 AM +0200 5/29/10, Nisse =?utf-8?Q?Engstr=C3=B6m?= wrote:
No. There are no glyphs in Unicode. This is spelled out for
you in chapter 2, figure 2-2. "Characters versus Glyphs".
*blink* *blink* *blink*
I read it, but that's not addressing the issue here -- that's
something different.
On Fri, 28 May 2010 16:52:09 -0400, tedd wrote:
> At 8:52 PM +0200 5/28/10, Nisse =?utf-8?Q?Engstr=C3=B6m?= wrote:
>>On Fri, 28 May 2010 11:13:35 -0400, tedd wrote:
>>
>> > As is my understanding, UTF-8 will accommodate all the languages
>>> (glyphs) of the world and then some. It will be a whil
At 8:52 PM +0200 5/28/10, Nisse =?utf-8?Q?Engstr=C3=B6m?= wrote:
On Fri, 28 May 2010 11:13:35 -0400, tedd wrote:
> As is my understanding, UTF-8 will accommodate all the languages
(glyphs) of the world and then some. It will be a while before we
need UTF-16 or UTF-32 but those are just a lar
On Fri, 28 May 2010 11:13:35 -0400, tedd wrote:
> Bob wrtote:
>
>>>The real question is whether unicode is even relevant now that the UTF
>>>series is available.
>
> Ashley answered:
>
>>Bob, UTF is unicode (Unicode Transformation Format)
Or more precisely, UTF-{8,16,32} are different ways to
At 8:33 PM +0100 5/27/10, Ashley Sheridan wrote:
Tedd, does that URL actually go anywhere, as I got nothing when I
tried visiting it, both the actual URL and the punycode version.
Ash:
Try it again (it worked for me).
In any event, the link was supposed to be redirected to this site:
http://
Bob wrtote:
The real question is whether unicode is even relevant now that the UTF
series is available.
Ashley answered:
Bob, UTF is unicode (Unicode Transformation Format)
Yes, Ashley is correct. UTF-8 is Unicode, as is UTF-16 and UTF-32,
which all use different a number of bytes for eac
On 28 May 2010 04:47, Guus Ellenkamp wrote:
> And I need(ed) this stuff especially for non-ASCII characters like Chinese,
> Arabic and stuff :)
>
> "Ashley Sheridan" wrote in message
> news:1274976794.2202.274.ca...@localhost...
> On Thu, 2010-05-27 at 12:08 -0400, Adam Richardson wrote:
>
>> On
On Fri, 2010-05-28 at 11:51 +0800, Guus Ellenkamp wrote:
> I would like if you stick to the original issue: can a PHP source file be in
> utf-8. It's not about the output, that is properly supported.
>
> Think it would be a good idea anyhow that PHP would support utf-8 source
> files as it seem
I would like if you stick to the original issue: can a PHP source file be in
utf-8. It's not about the output, that is properly supported.
Think it would be a good idea anyhow that PHP would support utf-8 source
files as it seems utf-8 is going to be the de-facto standard for text files
anyhow.
And I need(ed) this stuff especially for non-ASCII characters like Chinese,
Arabic and stuff :)
"Ashley Sheridan" wrote in message
news:1274976794.2202.274.ca...@localhost...
On Thu, 2010-05-27 at 12:08 -0400, Adam Richardson wrote:
> On Thu, May 27, 2010 at 9:45 AM, Guus Ellenkamp
> wrote:
>
On Thu, 2010-05-27 at 15:28 -0400, Bob McConnell wrote:
> From: tedd
>
> > The Unicode database uses the same lower
> > character values (i.e., "code points") as does
> > ASCII, namely 0-127, and thus UFT-8 (8-bit
> > variable width encoding) is really a super-set
> > which includes the sub-s
From: tedd
> The Unicode database uses the same lower
> character values (i.e., "code points") as does
> ASCII, namely 0-127, and thus UFT-8 (8-bit
> variable width encoding) is really a super-set
> which includes the sub-set of ASCII.
>
> The "Wingdings" font that Ash refers to is the
> rea
At 7:11 PM +0100 5/27/10, Ashley Sheridan wrote:
On Thu, 2010-05-27 at 14:06 -0400, Bob McConnell wrote:
> From: Ashley Sheridan
> > I don't use the higher range of characters often, but I do sometimes use
> them for things like the graphical glyphs (12)&, etc) I know I could do
> those wit
On Thu, 2010-05-27 at 14:06 -0400, Bob McConnell wrote:
> From: Ashley Sheridan
>
> >On Thu, 2010-05-27 at 12:08 -0400, Adam Richardson wrote:
> >
> >> On Thu, May 27, 2010 at 9:45 AM, Guus Ellenkamp
> >> wrote:
> >>
> >> > Thanks, but are you sure of that? I did some research a while ago and
>
From: Ashley Sheridan
>On Thu, 2010-05-27 at 12:08 -0400, Adam Richardson wrote:
>
>> On Thu, May 27, 2010 at 9:45 AM, Guus Ellenkamp
>> wrote:
>>
>> > Thanks, but are you sure of that? I did some research a while ago and found
>> > that officially PHP files should be ascii and not have any speci
At 5:13 PM +0100 5/27/10, Ashley Sheridan wrote:
I don't use the higher range of characters often, but I do sometimes use
them for things like the graphical glyphs (12)&, etc) I know I could do
those with regular text and the Wingdings font, but that's not available
on every computer, and break
On Thu, 2010-05-27 at 12:08 -0400, Adam Richardson wrote:
> On Thu, May 27, 2010 at 9:45 AM, Guus Ellenkamp
> wrote:
>
> > Thanks, but are you sure of that? I did some research a while ago and found
> > that officially PHP files should be ascii and not have any specific
> > character encoding. I
On Thu, May 27, 2010 at 9:45 AM, Guus Ellenkamp
wrote:
> Thanks, but are you sure of that? I did some research a while ago and found
> that officially PHP files should be ascii and not have any specific
> character encoding. I believe it will work anyhow (did not try this one),
> but would like to
On Thu, 2010-05-27 at 21:45 +0800, Guus Ellenkamp wrote:
> Thanks, but are you sure of that? I did some research a while ago and found
> that officially PHP files should be ascii and not have any specific
> character encoding. I believe it will work anyhow (did not try this one),
> but would li
Thanks, but are you sure of that? I did some research a while ago and found
that officially PHP files should be ascii and not have any specific
character encoding. I believe it will work anyhow (did not try this one),
but would like to stick with the standards.
"Ashley Sheridan" wrote in messa
Skype: Francophile; Wlm&MSN: arthaelon @ yandex.ru; Jabber: arthaelon @
jabber.org
Yahoo! messenger: andre.polykanine; ICQ: 191749952
Twitter: m_elensule
- Original message -
From: Guus Ellenkamp
To: php-general@lists.php.net
Date: Wednesday, May 26, 2010, 5:20:59 PM
Subject:
On Wed, 2010-05-26 at 22:20 +0800, Guus Ellenkamp wrote:
> We use PHP defines for defining text in different languages. As far as I
> know PHP files are supposed to be ASCII, not UTF-8 or something like that.
> What I want to make is a conversion program that would convert a given UTF-8
> file
We use PHP defines for defining text in different languages. As far as I
know PHP files are supposed to be ASCII, not UTF-8 or something like that.
What I want to make is a conversion program that would convert a given UTF-8
file with the format
definetext1=this is a text in random UTF-8, proba
On Mon, Apr 5, 2010 at 4:09 PM, Ashley Sheridan
wrote:
> On Mon, 2010-04-05 at 05:53 +0100, Nathan Rixham wrote:
>
> you sure you're only smoking cigarettes?
>
> has to be one of the most random replies to any php thread I've ever
> seen - awesome!
>
> regards
>
> Rene Veerman wrote:
> > yea i'
it's about telepathy. mass-telepathy ;)
telepathic pressure.
death threats through telepathy, of which i've had quite a few in past weeks..
fear begets fear begets disease...
but thanks for the compliment ;)
On Mon, Apr 5, 2010 at 6:53 AM, Nathan Rixham wrote:
> you sure you're only smoking ci
On 04/05/10 19:39, Ashley Sheridan wrote:
On Mon, 2010-04-05 at 05:53 +0100, Nathan Rixham wrote:
you sure you're only smoking cigarettes?
has to be one of the most random replies to any php thread I've ever
seen - awesome!
regards
Rene Veerman wrote:
yea i'm not the only one with those typ
On Mon, 2010-04-05 at 05:53 +0100, Nathan Rixham wrote:
> you sure you're only smoking cigarettes?
>
> has to be one of the most random replies to any php thread I've ever
> seen - awesome!
>
> regards
>
> Rene Veerman wrote:
> > yea i'm not the only one with those type of problems. sometimes t
you sure you're only smoking cigarettes?
has to be one of the most random replies to any php thread I've ever
seen - awesome!
regards
Rene Veerman wrote:
> yea i'm not the only one with those type of problems. sometimes times
> slows down in my room so much not even my speakers sound normal
> an
yea i'm not the only one with those type of problems. sometimes times
slows down in my room so much not even my speakers sound normal
anymore; equipment that doesn't work (despite being crappy and known
by it's patterns of refusal to work; still EXTRA abnormal since about
a week or so)...
it sound
Andre Polykanine wrote:
> Hello everyone,
>
> It's quite simple but I'm still stuck.
> What I need is the following: I have an array as a parameter of my
> custom function. However, I'd like to allow users to enter a string
> instead of an array. In this case (if the parameter is a string), it
> m
Hello everyone,
It's quite simple but I'm still stuck.
What I need is the following: I have an array as a parameter of my
custom function. However, I'd like to allow users to enter a string
instead of an array. In this case (if the parameter is a string), it
must be replaced with an array containi
Paul Fierro wrote:
On 11/9/09 8:56 AM, Tony Marston wrote:
I have tried subscribing to the internals list, but none of my postings ever
appears.
That's unfortunate as you missed this thread:
http://marc.info/?t=12553625831&r=1&w=2
I didn't :)
Cheers,
Rob.
--
http://www.interjinn.com
Tony Marston wrote:
"David Otton" wrote in message
news:193d27170911090331k7ecbe69cl1dd30651273e7...@mail.gmail.com...
2009/11/9 Tony Marston :
So you wouldn't trust the PHP developers to write simple code which takes
each POSIX function and redirects it to a PCRE function? I have more
faith
Tony Marston wrote:
"Ashley Sheridan" wrote in message
news:1257764339.1076.56.ca...@localhost...
On Mon, 2009-11-09 at 00:23 +, Tony Marston wrote:
developer laziness
or incompetence is not an acceptable excuse.
Exactly, so fix your scripts!
But my scripts aren't broken! It's PHP 6 t
Tony Marston wrote:
"Robert Cummings" wrote in message
news:4af76e1f.2050...@interjinn.com...
Tony Marston wrote:
"Robert Cummings" wrote in message
Then you've got several options:
1) Don't upgrade PHP.
Not an acceptable option.
2) Pick a different hosting provider.
Not an acceptable op
At 12:23 AM + 11/9/09, Tony Marston wrote:
Do the maths. It's not rocket science.
Tony Marston
Damn, I was hoping for some rocket science. But traveling the update
route isn't rocket science either.
I can tell you from experience that everything changes. Nothing
remains static -- so, g
On Mon, 2009-11-09 at 15:49 +, David Otton wrote:
> 2009/11/9 Tony Marston :
>
> > Because I can't do that until I install PHP 6, but as I never play with beta
> > software waiting for it to go live will be too late.
>
> Not sure why not. If it's just the name collision, call them
> alt_ereg
2009/11/9 Tony Marston :
> Because I can't do that until I install PHP 6, but as I never play with beta
> software waiting for it to go live will be too late.
Not sure why not. If it's just the name collision, call them
alt_ereg*() until ereg*() goes away. In fact, it's much easier to
write unit
On 11/9/09 8:56 AM, Tony Marston wrote:
> I have tried subscribing to the internals list, but none of my postings ever
> appears.
That's unfortunate as you missed this thread:
http://marc.info/?t=12553625831&r=1&w=2
Paul
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe,
"David Otton" wrote in message
news:193d27170911090331k7ecbe69cl1dd30651273e7...@mail.gmail.com...
> 2009/11/9 Tony Marston :
>
>> So you wouldn't trust the PHP developers to write simple code which takes
>> each POSIX function and redirects it to a PCRE function? I have more
>> faith
>> in the
Tony Marston wrote:
How many hosting companies write to all their account holders to ask
permission before upgrading PHP, not just from 4 to 5, but all the releases
in between? Very few of them, if any, in my experience.
I've no idea what horrible hosting companies you've had experiences
wit
2009/11/9 Tony Marston :
> So you wouldn't trust the PHP developers to write simple code which takes
> each POSIX function and redirects it to a PCRE function? I have more faith
> in their ability than I do yours.
If it's as simple as you claim, why don't you mock-up your solution in
PHP, rather
"Ashley Sheridan" wrote in message
news:1257764339.1076.56.ca...@localhost...
> On Mon, 2009-11-09 at 00:23 +, Tony Marston wrote:
>
>> developer laziness
>> or incompetence is not an acceptable excuse.
>
>
> Exactly, so fix your scripts!
But my scripts aren't broken! It's PHP 6 that is bro
On Mon, 2009-11-09 at 00:23 +, Tony Marston wrote:
> developer laziness
> or incompetence is not an acceptable excuse.
Exactly, so fix your scripts!
I do wonder though, what hosting company you use that would just upgrade
to PHP6 without warning on you and 'break' your scripts, yet at the
"Robert Cummings" wrote in message
news:4af76e1f.2050...@interjinn.com...
> Tony Marston wrote:
>> "Robert Cummings" wrote in message
> Then you've got several options:
> 1) Don't upgrade PHP.
Not an acceptable option.
> 2) Pick a different hosting provider.
Not an ac
"Paul M Foster" wrote in message
news:20091109030235.gh3...@quillandmouse.com...
> On Sun, Nov 08, 2009 at 06:30:37PM -0500, Robert Cummings wrote:
>
>> Also, why support
>> two libraries for which one is obviously inferior in speed and
>> functionality?
>>
>
> Because Tony's Radicore framework
On Sun, Nov 08, 2009 at 06:30:37PM -0500, Robert Cummings wrote:
> Also, why support
> two libraries for which one is obviously inferior in speed and
> functionality?
>
Because Tony's Radicore framework has a bunch of ereg* calls in it. ;-}
Paul
--
Paul M. Foster
--
PHP General Mailing List
Tony Marston wrote:
"Robert Cummings" wrote in message
Then you've got several options:
1) Don't upgrade PHP.
Not an acceptable option.
2) Pick a different hosting provider.
Not an acceptable optional.
3) Fix your scripts.
The scripts aren't broken. It's PHP 6 that's going to be broken.
"Robert Cummings" wrote in message
news:4af7549d.1060...@interjinn.com...
> Tony Marston wrote:
>> "Eddie Drapkin" wrote in message
>> news:68de37340911081330v799803f3he6ed60ecc6e67...@mail.gmail.com...
>> On Sun, Nov 8, 2009 at 4:13 PM, Tony Marston
>> wrote:
>>> That's an amateur fudge, not
Tony Marston wrote:
"Eddie Drapkin" wrote in message
news:68de37340911081330v799803f3he6ed60ecc6e67...@mail.gmail.com...
On Sun, Nov 8, 2009 at 4:13 PM, Tony Marston
wrote:
That's an amateur fudge, not a professional fix. Besides, what happens if
your hosting company won't let you install PEC
"Eddie Drapkin" wrote in message
news:68de37340911081330v799803f3he6ed60ecc6e67...@mail.gmail.com...
On Sun, Nov 8, 2009 at 4:13 PM, Tony Marston
wrote:
> That's an amateur fudge, not a professional fix. Besides, what happens if
> your hosting company won't let you install PECL extensions?
>
>
On Sun, Nov 8, 2009 at 4:13 PM, Tony Marston
wrote:
> That's an amateur fudge, not a professional fix. Besides, what happens if
> your hosting company won't let you install PECL extensions?
>
> --
> Tony Marston
> http://www.tonymarston.net
> http://www.radicore.org
>
> "Eddie Drapkin" wrote in m
That's an amateur fudge, not a professional fix. Besides, what happens if
your hosting company won't let you install PECL extensions?
--
Tony Marston
http://www.tonymarston.net
http://www.radicore.org
"Eddie Drapkin" wrote in message
news:68de37340911081209p45577d46r70a3c194f1079...@mail.gmai
On Sun, Nov 8, 2009 at 2:47 PM, Tony Marston
wrote:
> "It is for the better"? How can you justify that? It is a problem that will
> cause a lot of headaches for a lot of users, yet the solution which I have
> proposed will remove that problem with only very little effort, yet still
> leave only on
"It is for the better"? How can you justify that? It is a problem that will
cause a lot of headaches for a lot of users, yet the solution which I have
proposed will remove that problem with only very little effort, yet still
leave only one regex engine which has to be supported in PHP 6.
You ha
The same can be said about the removal of magic_quotes(), it will break
A LOT of old scripts.
I am in the same boat, I did not keep up to date with the PHP developer
plans and just found out about ereg when I installed PHP 5.3.
I think it was handled properly by displaying warning messages befo
The POSIX regex functions are currently marked as DEPRECATED in 5.3.0 and
are due to be removed completely in PHP 6. I propose that instead of being
dropped they be converted into wrappers for the equivalent PCRE functions.
It does not matter how long various people have been preaching in vari
Hello all :)
I have a problem, so, Before I'll start building my own function - I was
wondering - is there any built-in function to convert 16M to 16777216
(Including all other types of letters)?
(16M = 16 * 1024 * 1024)
(Its from php.ini configurations)
--
Use ROT26 for best security
ioan...@btinternet.com wrote:
Is there a function which will convert characters like \x3d \x3b \x3c to
ASCII. Or is there a full list of conversions, eg \x3c=\x3e=>, \x27=' etc. What are these, hex? I tried hexdec() but am not
sure that is right.
These are hex escaped for a string:
This w
Is there a function which will convert characters like \x3d \x3b \x3c to
ASCII. Or is there a full list of conversions, eg \x3c=<
\x3e=>, \x27=' etc. What are these, hex? I tried hexdec() but am not
sure that is right.
John
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, vi
On Fri, Apr 10, 2009 at 9:12 AM, Ashley Sheridan
wrote:
> If you'll note, the original question was to find a way which did not
> require ffmpeg. I should really have rephrased that to say "I know of no
> way you can do this without ffmpeg". I've used ffmpeg and mencoder
> myself to transcode vid
On Fri, 2009-04-10 at 09:01 -0700, Michael Shadle wrote:
> On Fri, Apr 10, 2009 at 4:31 AM, Ashley Sheridan
> wrote:
>
> > I know of no way you can do this. Not only would any potential solution
> > be too slow, but it would affect other users of the server, and more
> > than likely result in an
On Fri, Apr 10, 2009 at 4:31 AM, Ashley Sheridan
wrote:
> I know of no way you can do this. Not only would any potential solution
> be too slow, but it would affect other users of the server, and more
> than likely result in an email from you hosting provider!
>
> Have you considered using YouTub
On Wed, 2009-04-08 at 22:34 -0700, Michael Shadle wrote:
> On Wed, Apr 8, 2009 at 10:30 PM, Gevorg Harutyunyan
> wrote:
> > Hi,
> >
> > I need to convert video files to FLV using php.
> >
> > The only solution that I found is to use ffmpeg, but because I am using
> > shared hosting I am not allow
/OpenOffice.org
http://www.gnu.org/philosophy/no-word-attachments.html
--- On Thu, 9/4/09, Gevorg Harutyunyan wrote:
From: Gevorg Harutyunyan
Subject: Re: [PHP] convert video files to FLV
To: "Adrian"
Cc: php-general@lists.php.net
Received: Thursday, 9 April, 2009, 3:45 PM
Thanks guys
there's some third party encoding services out there, and if you host
with softlayer, they have media transcoding services they offer for
their hosting customers (not sure the cost, but it's pay for what you
use)
On Wed, Apr 8, 2009 at 10:45 PM, Gevorg Harutyunyan wrote:
> Thanks guys, but as I u
Thanks guys, but as I understood that extension also requires ffmpeg on
server, correct me if I am wrong.
So anyway I need ffmpeg on server. Some day, when I will have dedicated
server I will use ffmpeg for sure, but now
I need other solution.
On Thu, Apr 9, 2009 at 10:33 AM, Adrian wrote:
> Don
On Wed, Apr 8, 2009 at 10:33 PM, Adrian wrote:
> Don't waste CPU power of shared servers for video recoding.
> If you need that, get a dedicated server without other customers who
> would probably be affected by you using lots of cpu power.
>
> Besides that, if you cannot install own (compiled) so
On Wed, Apr 8, 2009 at 10:30 PM, Gevorg Harutyunyan wrote:
> Hi,
>
> I need to convert video files to FLV using php.
>
> The only solution that I found is to use ffmpeg, but because I am using
> shared hosting I am not allowed to install it on server.
> Do you know any other ways to convert any vi
Don't waste CPU power of shared servers for video recoding.
If you need that, get a dedicated server without other customers who
would probably be affected by you using lots of cpu power.
Besides that, if you cannot install own (compiled) software on it,
you'd have to use a pure php solution which
Hi,
I need to convert video files to FLV using php.
The only solution that I found is to use ffmpeg, but because I am using
shared hosting I am not allowed to install it on server.
Do you know any other ways to convert any video file types to flv using PHP.
Thanks for help!
Best Regards,
Gevorg
Have you looked here?
http://www.google.com/custom?domains=www.phpclasses.org&q=cmyk+to+rgb&sa=Search&sitesearch=www.phpclasses.org&client=pub-2951707118576741&forid=1&channel=5742870948&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23663399%3BGL%3A1%3BDIV%3A%2322%3BVLC%3A663399%3BAH%3Acenter%3BBGC%
1 - 100 of 505 matches
Mail list logo