Tagged Questions
-1
votes
1answer
44 views
Problems with regexes when porting from Ruby to PHP
I have two bits of code that seem to be correct translations of one another. They unfortunately appear to return different values.
Code in Ruby:
def separate(text,boundary = nil)
# returns array ...
1
vote
0answers
34 views
sift.js(MongoDB inspired array filtering library) PHP port
There's a sift.js library, which allows you to use MongoDB syntax to query JavaScript arrays.
I've asked for a such PHP class in my question, and got several answers so far with good examples, but ...
2
votes
2answers
84 views
Porting stored procedures between MySQL servers
I have inherited a web-application project (PHP/MySQL) which makes extensive use of stored procedures, and I am unsure how to transfer these to my local machine for development.
Specifically, it is ...
-1
votes
1answer
39 views
PHP Newbie trying to understand how to make a php4 script equivalent in php5
I am a newbie to php, so pardon me if this email sounds, well... dumb. I am trying to port some php4 code for my boss. Here is this one function that makes me stumped.
function ...
0
votes
1answer
71 views
Porting Delphi TList.Sort to PHP
I need to port Sort procedure from TList to receive an PHP Array
procedure TList.Sort(Compare: TListSortCompare);
begin
if (FList <> nil) and (Count > 0) then
QuickSort(FList, 0, Count ...
0
votes
0answers
147 views
Various differences in MySQL to PostgreSQL from PHP perspective [closed]
I'm a bit new to PHP and I'm currently porting a MySQL-PHP back-end to a PostgreSQL-PHP one (currently using PhpPgAdmin and XAMPP) with the back-end results to be passed to jQuery-HTML front-end as ...
1
vote
1answer
87 views
Porting Regex Code
I have some regex code originally written in PHP and I need to port this to ASP. Here is the original PHP code:
$contents = file_get_contents("http://localhost/source.txt");
$title = 'My Title';
...
5
votes
2answers
847 views
Porting a website from Symfony 1.4 to 2.0
I've got a huge site that has been written (in a very bad way) in symfony 1.4
now, I've been asked to make some substantial changes to the navigation flow, add some features and so on..
considering ...
0
votes
1answer
106 views
NEWLINE in windows going to UNIX
I am developing on PHPandAPACHE on windows xampp environment.
I have some files I read and write to.
I do use definitions of NEWLINES (\r\n for Windows, \n for UNIX), but isn't it that when I port to ...
0
votes
1answer
125 views
building grails app in wordpress
Even though wordpress uses PHP, I would like to build a web application within a wordpress site I already have, so that I don't have to redo the site from scratch, and can use the same design elements ...
1
vote
1answer
422 views
Intersection of Lines Given LatLong + Bearing
I'm trying to port some javascript to php from http://www.movable-type.co.uk/scripts/latlong.html. I get it to run with out error but it gives me a different value. I tried to double check it all and ...
0
votes
2answers
134 views
Porting code using sizeof() from C++ to PHP
I have some C++ code (segment seen below), I need to convert this to another language (namely PHP). The code, as seen, uses structs, which PHP doesn't do. I know I can "kind of" emulate structs ...
1
vote
2answers
63 views
Session porting
How to carry a session which is made with some language i.e (java) on some website(www.example1.com) to the website made with other language i.e (php) on some other website i.e (www.example2.com).
1
vote
2answers
314 views
Need help porting XTEA C++ code to PHP
I have some problem convert C++ code to PHP. The purpose is I need to communicate my application (build with C++) with web server (PHP ) using XTEA cipher to encrypt/decrypt the requested packet via ...
2
votes
1answer
519 views
What is the C++ equivalent of PHP's hash_hmac function?
I'm porting a PHP application to C++. The PHP application is using this function:
hash_hmac — Generate a keyed hash value using the HMAC method
If I have this code, what is it actually doing?
...
5
votes
3answers
238 views
Porting a C++ map with std::accumulate to PHP
I'm not terribly well versed with array manipulation in PHP, so I have a simple porting question. In C++ I have a map std::map<int, int>, for which the implicit ordering on the key is a crucial ...
0
votes
1answer
1k views
In php what does the 'double greater than' symbol mean?
I have this code, I'm trying to port from php to c/objective-c:
if ($byteIndex < count($data) ) {
$light = ( ( ($data[$byteIndex] >> $bitIndex) & 1) == 1);
}
But I can't seem to ...
0
votes
3answers
3k views
Porting JavaScript escape() to PHP
I need to escape entire javascript code block using escape() compatible function via PHP, and then put resulting JavaScript code back into a code construct like this:
...
1
vote
1answer
271 views
Should I carry on porting FPDF to .NET?
I've started to port FPDF to .NET, however I was wondering if its worth the effort.
Has it already been done?
I'm aware of ASP FPDF, but I'm talking about creating a native .NET dll so that any ...
2
votes
2answers
181 views
Porting some PHP to ColdFusion
OK, I'm working with converting some very basic PHP to port to a dev server where the client only has CF. Ive never worked with it, and I just need to know how to port a couple things:
<?php
...
0
votes
3answers
193 views
What does it mean to “port” legacy code to PHP?
I have a open-book test this week and I've been notified that the test will be an exercise whereby a chunk of legacy code is provided and a requirement to 'port' the code.
I understand what a ...
0
votes
2answers
270 views
porting this php code to c#
I'm having trouble porting this code below to c#. my main trouble is with the $fb_activity_array.
$fb_activity_message = '{*actor*} played this game';
$fb_activity_array = ...
5
votes
2answers
216 views
How would I translate this C# code into PHP? Solve the mystery of someone's crappy API doc!
I was handed an software doc (or what passes for proper documentation nowadays). Much to my chagrin, it might as well have been gently used piece of toilet paper from the men's room. Needless to ...
0
votes
2answers
1k views
Using Java keystore in PHP
I'm looking to port a small Java security library to PHP. The Java implementation makes use of a keystore for signing some stuff and I'm wondering how to go about recreating this functionality in ...
0
votes
5answers
2k views
Problem porting PHP crypt() function to C#
Im working on porting some old ALP user accounts to a new ASP.Net solution, and I would like for the users to be able to use their old passwords.
However, in order for that to work, I need to be able ...
1
vote
4answers
298 views
What challenges will we face porting a site from asp.net to a LAMP (php) stack?
We have an enterprise application written in asp.net c# (3.5) and SQL server that we want to bundle and release for customers.
However, several have expressed concerns that it requires a Microsoft ...

