Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Search results

  1. S

    Extract price from string array and sort by price

    I need help determining the best way to extract the price value out of the strings in the array received from the API, and then reorder the array based on the lowest price values. These are some of the data that I received from the API. let luxcar_data = ["Ferrari70", "Bugatti45", "McLaren17"...
  2. S

    Php script triggering python script in background

    Current Situation I created a php script, to start the python script. Following is the script: $python_file = "/var/www/web/test.py 2>&1 | tee -a /tmp/mylog 2>/dev/null >/dev/null &"; $command = "nohup python3 ".$python_file; exec($command); Problem: After triggering the php script, the...
Top