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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T10:14:04+00:00 2026-06-11T10:14:04+00:00

I have a table with column name = recording_size. In this column I am

  • 0

I have a table with column name = recording_size.
In this column I am storing the size in bytes,
but on the Web I am showing the size in KB.

       public static function getKbFromBytes($string){
         if($string){
            return ($string/1024);
          }
       }

Now I have a Filtration Functionality in Web. So as I am showing size in KB so I’ll certainly take Input for Searching from user in KB & not in bytes although in DB I have that in bytes. For that I take input in KB and than convert it again to bytes like:

    public static function getBytesFromKb($string){
        if($string){
         return ($string * 1024);
       }
    }

Example:

size in Bytes = 127232

When I apply my function so it = 124.25 KB
now when user write exactly like 124.25 then the search works,
but I want that user does not write exactly the same.
The user can also write 124 instead of 124.54, and when the user writes 124 then my search is not working — meaning it does not show any records.
I have also ADD & Subtract 50 from the converted bytes but it is not working.

   $sql = $sql->where('r.recording_size BETWEEN "'.(Engine::getBytesFromKb($opt['sn']) - 50) .'" AND "'.(Engine::getBytesFromKb($opt['sn']) + 50) .'"');

How can I achieve this?

  • 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-06-11T10:14:05+00:00Added an answer on June 11, 2026 at 10:14 am

    Searching for size should probably be as a range instead of an equality anyway. At least, the default should be the range, unless your app’s primary focus is the exact size. For the SQL:

    $kb = round($opt['sn']);
    $sql = $sql->where('r.recording_size BETWEEN '.($kb * 1024).' AND '.(($kb + 1) * 1024));
    

    By the way, you should omit the quotation marks ("). They are invalid/nonstandard even for strings. And you are comparing int‘s.

    Another thing to watch for is KiB vs KB.

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

Sidebar

Related Questions

I have a table with column for storing product code. | product_id | Product-name
I have a table with the column name: variant_markup datatype: numeric(4,3) I try to
I have a table name KHA_ID with a column name of KHA_ID. I went
I have a DataGrid table with columns name , phone . In column name
I have 4 classes as below... @MappedSuperclass @Inheritance(strategy=InheritanceType.TABLE_PER_CLASS) public abstract class Platform{ @Id @Column(name
I have an a new table with the column below: id , name ,
I have an table like this Id Name ReportingId == 1 Stala Null 2
i have 3 tables A,B and C. table A has column employee_name,id table B
I have a table: event_list with two columns: name as var(80) and default as
I have a table which have 3 fields: id, name, reporting to which have

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.