ItSolutionStuff.com

PHP Count Number of Pages in PDF File

By Hardik Savani • May 14, 2024
PHP

In this post, i will give you simple example of how to get number of pages in pdf file using php. If you need to get number of pages in pdf using php then i will help you php count number of pages in pdf.

Sometime, we just need to count how many pages are there in pdf file and show it for our admin pane or front-end. So i will give you very simple example of getting calculate number of pages in pdf file using core php. you can also use in php, laravel, codeigniter framework too.

In this example we will create countPages() and it will take a one argument as path of pdf file. so just see bellow example for your solution.

Make Sure you have itsolutionstuff_file.pdf file in your pdf folder.

Example:

<?php

$path = 'pdf/itsolutionstuff_file.pdf';

$totoalPages = countPages($path);

echo $totoalPages;

function countPages($path) {

$pdftext = file_get_contents($path);

$num = preg_match_all("/\/Page\W/", $pdftext, $dummy);

return $num;

}

?>

Output:

7

I hope it can help you...

Tags: PHP
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

PHP Get All Array Keys Starting with Certain String Example

Read Now →

How to Convert XML File to Array in PHP?

Read Now →

PHP Move File from One Folder to Another Example

Read Now →

How to Partially Hide Email Address in PHP?

Read Now →

How to Get Difference Between Two Dates in PHP?

Read Now →

Laravel 6 Generate PDF File Tutorial

Read Now →

How to Remove Multiple Keys from PHP Array?

Read Now →

Laravel 11 Merge Multiple PDF Files Example

Read Now →

PHP MySQL DataTables Server-side Processing Example

Read Now →

Convert HTML to PDF in PHP with Dompdf Example

Read Now →

PHP Capture Screenshot of Website from URL Example

Read Now →

How to Convert Object into Array in PHP?

Read Now →

How to Count Number of Files in a Directory in PHP?

Read Now →

How to Remove Null Values from Array in PHP?

Read Now →