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 6321957
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T16:14:30+00:00 2026-05-24T16:14:30+00:00

I am trying to run a script through command prompt in PHP and trying

  • 0

I am trying to run a script through command prompt in PHP and trying to show the result in tabular form. But due to different character length of words I am not able to show the result properly align.

I want result like this

Book                  ISBN      Department
Operating System      101       CS
C                     102       CS
java                  103       CS

Can anyone please help me to get this output like this in php on console.

Thanks in advance

  • 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-24T16:14:32+00:00Added an answer on May 24, 2026 at 4:14 pm

    If you don’t want (or not allowed for some reason) to use libraries, you can use standard php printf / sprintf functions.

    The problem with them that if you have values with variable and non-limited width, then you will have to decide if long values will be truncated or break table’s layout.

    First case:

    // fixed width
    $mask = "|%5.5s |%-30.30s | x |\n";
    printf($mask, 'Num', 'Title');
    printf($mask, '1', 'A value that fits the cell');
    printf($mask, '2', 'A too long value the end of which will be cut off');
    

    The output is

    |  Num |Title                          | x |
    |    1 |A value that fits the cell     | x |
    |    2 |A too long value the end of wh | x |
    

    Second case:

    // only min-width of cells is set
    $mask = "|%5s |%-30s | x |\n";
    printf($mask, 'Num', 'Title');
    printf($mask, '1', 'A value that fits the cell');
    printf($mask, '2', 'A too long value that will brake the table');
    

    And here we get

    |  Num |Title                          | x |
    |    1 |A value that fits the cell     | x |
    |    2 |A too long value that will brake the table | x |
    

    If neither of that satisfies your needs and you really need a table with flowing width columns, than you have to calculate maximum width of values in each column. But that is how PEAR::Console_Table exactly works.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to run this shell script command through applescript on my mac
I'm trying to run a php-script on a scheduled basis. So I'd thought crontab
I'm trying to run javascript from a windows command line via script cscript //NoLogo
I'm trying to pass multiple checkboxes with different values to a PHP script that
I'm trying to execute a command through system() in PHP. The command is /usr/bin/unzip,
I am trying to run a Python program using PHP. Here's the code $command
I've Google around and haven't found much... I'm trying to run script/server for my
I'm trying to run a script from the Windows XP console. (In case it's
I'm trying to run this script: import re, os def build_pool(cwd): global xtn_pool, file_pool
I'm trying to run a bash script that has: ssh -l <username> <compname> 'sudo

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.