Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 274187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T00:34:17+00:00 2026-05-12T00:34:17+00:00

Recently, I’ve released an open-source class – wrapper of API functions available from one

  • 0

Recently, I’ve released an open-source class – wrapper of API functions available from one of the leading SMS gateway, which provides an HTTP-API access to send an SMS messages.

Now I want to make a custom command line utitity, which can be available for user anywhere in the command line, so he can send SMS just by running console command like this one:

$ my_custom_send_sms_command -u your_username -p your_password -k your_api_key 447771234567 'Hello from CLI'

Please, explain how this can be done?

Updated:

Class is written in PHP.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T00:34:17+00:00Added an answer on May 12, 2026 at 12:34 am

    Make sure you have the PHP CLI package installed. On my Ubuntu VPS I had to run:

    $ apt-get install php5-cli
    

    Check that it’s installed:

    $ /usr/bin/php -v
    

    Then, create a file called something like sendsms.php with contents similar to this:

    #!/usr/bin/php -q
    <?php
    
      // command line parameters are in the format:
      //     key1 value1 .. keyN valueN number message
    
      $username = "";
      $password = "";
      $apikey = "";
    
      // process pairs of arguments up to the last two    
      for ($x = 0; $x < ($argc - 3); $x++)
      {
        if ($argv[$x] == "-u") $username = $argv[$x + 1];
        if ($argv[$x] == "-p") $password = $argv[$x + 1];
        if ($argv[$x] == "-k") $apikey = $argv[$x + 1];
      }
      $number = $argv[$argc - 2];
      $message = $argv[$argc - 1];
    
      // To do: call the SMS API
      // For now just output the info   
      echo("Username = " . $username . "\r\n");
      echo("Password = " . $password . "\r\n");
      echo("API key = " . $apikey . "\r\n");
      echo("Number = " . $number . "\r\n");
      echo("Message = " . $message . "\r\n");
    ?>
    

    Make sure the file has execute permissions:

    chmod 755 sendsms.php
    

    And then run it from the current folder like this:

    $ ./sendsms.php -u your_username -p your_password -k your_api_key 447771234567 'Hello from CLI'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 499k
  • Answers 499k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer No. You should call nothing but mysql_real_escape_string. The htmlspecialchars and… May 16, 2026 at 12:29 pm
  • Editorial Team
    Editorial Team added an answer You will always need two variables: Foo *head = getSomeList();… May 16, 2026 at 12:29 pm
  • Editorial Team
    Editorial Team added an answer In constructor add event to PreviewMouseWheel PreviewMouseWheel += Window_PreviewMouseWheel; And… May 16, 2026 at 12:29 pm

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

Recently Jeff has posted regarding his trouble with database deadlocks related to reading. Multiversion
Recently I have been investigating the possibilities of caching in ASP.NET. I rolled my
Recently, I started changing some of our applications to support MS SQL Server as
Recently, I've been dealing with an error with accessing MAPI via the .NET framework
Recently our site has been deluged with the resurgence of the Asprox botnet SQL
Recently I had to develop a SharePoint workflow, and I found the experience quite
Recently we got a new server at the office purely for testing purposes. It
Recently, I read an article entitled SATA vs. SCSI reliability . It mostly discusses
Recently I ran into this error in my web application: java.lang.OutOfMemoryError: PermGen space It's
Recently a friend and I were talking about securing stored procedure code in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.