Search results

  1. E

    Php get part of a html with cURL?

    Hi, is there any way to get only part of a html say the first 500 chars using cURL?or something else.
  2. E

    How do i write the name of a variable in a string in php?

    hi i am trying to write smth like "$A" in a text file with php but all it does is write its value Thanks man! you have 5 while we're at it do you happen to know any class that does singular value decomposition in php? It will take a lot of time to write one. I am trying to implement latent...
  3. E

    How do i write the name of a variable in a string in php?

    hi i am trying to write smth like "$A" in a text file with php but all it does is write its value Thanks man! you have 5 while we're at it do you happen to know any class that does singular value decomposition in php? It will take a lot of time to write one. I am trying to implement latent...
  4. E

    How do i write the name of a variable in a string in php?

    hi i am trying to write smth like "$A" in a text file with php but all it does is write its value Thanks man! you have 5 while we're at it do you happen to know any class that does singular value decomposition in php? It will take a lot of time to write one. I am trying to implement latent...
  5. E

    How do i write the name of a variable in a string in php?

    hi i am trying to write smth like "$A" in a text file with php but all it does is write its value Thanks man! you have 5 while we're at it do you happen to know any class that does singular value decomposition in php? It will take a lot of time to write one. I am trying to implement latent...
  6. E

    PHP fork //useless string to get to 20?

    Hi. I was trying to make my php script a bit faster by using multithreading so i forked some children that calculate some 2d strings. The problem is that i need to combine those 2d strings in the parent process but i dont know how to get them.
  7. E

    php quick sort can you see a problem?

    Hi all. I was trying to implement a simple quicksort algo in php but my brain has frozen again. I cant see an error with the code i hope you can. Its an array[][] with array[][0] as a string and array[][1] as a numeric value i am trying to simply sort the numeric values and switch the string...
  8. E

    How can i run a long php script?

    I mean really long(5hr) and it cant be divided, its a collection of loops. @spoxox thanks! its just like python!
  9. E

    How can i run a long php script?

    I mean really long(5hr) and it cant be divided, its a collection of loops. @spoxox thanks! its just like python!
  10. E

    php quick sort can you see a problem?

    Hi all. I was trying to implement a simple quicksort algo in php but my brain has frozen again. I cant see an error with the code i hope you can. Its an array[][] with array[][0] as a string and array[][1] as a numeric value i am trying to simply sort the numeric values and switch the string...
  11. E

    PHP weird problem //useless string to get to 20?

    Why would this code: $stasi=$_GET['stasi']; $oDijk = new Dijkstra(); if($stasi=='a')echo "hurray"; $oDijk->start('a',$aRoutes);//start point a Work just fine and this one $stasi=$_GET['stasi']; $oDijk = new Dijkstra(); $oDijk->start($stasi,$aRoutes);//start point a gets stuck in a damned...
  12. E

    PHP cURL proxy ang stuff?

    Is this the only code i have to add so i can use a proxy to make the connection? curl_setopt($ch, CURLOPT_PROXY,'163.221.11.71:3124'); curl_setopt($ch, CURLOPT_HTTPPROXYTUNNEL, 1); If thats all why do i get an error at $result['ERR'] when i try to use it? when i dont use a proxy everything works...
Back
Top