|
Does Perl have a Perl Docs generator? Something like Java Docs or PHP Documenter?
Started by Phill Pafford on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Yes,....
Here_module($%) {
Simply pass your perl code through the perldoc program to get the formatted documentation Perl code? Why, yes.
Use "=cut" where you want to switch back to perl code.
Of identation, "=back" goes up a level.
|
|
I know Perl quite well, but have not worked with PHP. Any books or references that are targeted to people who know Perl and want to start using PHP?
Started by Brian G on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are going from Perl to PHP have a specific question on a function or module from Perl, and you want to know the PHP equivalent background in Perl....
It is very easy to jump into it.
Followed some tutorials online.
|
|
Can a PHP script unserialize a Storable file created with Perl?
Started by Rakesh on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You also might want could use JSON as a lingua-franca between the two languages, I suggest JSON::XS on the Perl side (with subroutines implemented in....
No, but you can dump PHP-readable data from Perl with PHP::Serialization .
|
Ask your Facebook Friends
|
I have a page written in Perl by someone else. I don't know Perl, so I wrote a PHP file that right now just links from the Perl page. What I'd like to do is embed the PHP file in the Perl file if the perl page has been passed a certain variable. If I ...
Started by Daniel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
When working with Perl and PHP it is often convenient to be able to share configuration data between programs (did I hear someone say....
To provide a Perl utility for including very simple PHP Files from a Perl program.
|
|
Just wondering... is there a PHP equivalent to Perl's Taint Mode? I don't think there is, but thought I'd ask.
Started by spudly on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://blog.php-security.org/archives/92-CORE-GRASP-PHP-Tainted.
It looks like a patch was made...
|
|
I find print_r in PHP extremely useful, but wonder if there is anything remotely equivalent in Perl?
Started by Steve M on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Boo);
As usually with Perl, you might prefer alternative solutions to the venerable Data::Dumper Perl code but instead a more skimmable format (same as the x command of the Perl debugger looking for the same thing and found this....
|
|
What is the best way to call C/C++ from other languages such as Java, Python, Perl, PHP, etc?
Started by Jared on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
From Perl Inline::C
Inline::CPP
Inline::Java
Inline.
The same opportunities for integration.
|
|
As we have CPAN Libraries in Perl, do we have similar kind in PHP ? actually am new to PHP and was not sure about this.
Started by Rachel on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
|
|
I have a website cgi-bin program that is written in c++.
Unfortunately the website provider for my friend's site only allows Perl or PHP cgi-bin scripts.
Is there an easy way to simply have a very small Perl or PHP wrapper that just calls the c++ compiled...
Started by KPexEA on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
SoLearn about execv.
It can be a security risk, and if they specifically only allow php and perl, then they would probably specifically disable as many methods of running non-php/perl as they could.
Programs in this way.
|
|
Do not you know a method to carry out the following code like php?
<html> <?perl print( 'test' ); ?> </html>
Started by ffffff on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
While you can embed Perl directly into a Template Toolkit file:
[% PERL %] use Date::Calc; my @today....
Apache/htdocs/mason> SetHandler perl-script PerlHandler HTML::Mason::ApacheHandler < EmbPerl though it is not too widely used.
|