{"id":2407,"date":"2025-10-15T12:30:00","date_gmt":"2025-10-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2407"},"modified":"2025-09-03T07:51:32","modified_gmt":"2025-09-03T12:51:32","slug":"how-to-install-php-8-3-on-almalinux-10","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/","title":{"rendered":"How to install PHP 8.3 on AlmaLinux 10"},"content":{"rendered":"\n<div id=\"linux-236375900\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>In this blog post, we will explain how to install PHP 8.3 on AlmaLinux 10 OS. PHP is an open-source scripting language widely used designed mostly for web development. PHP is a versatile language that can be used for different tasks, such as creating dynamic web pages and applications, managing sessions, and interacting with databases. The PHP code is executed on the server, is typically embedded within the HTML, and PHP enables websites to display different content based on the user&#8217;s input. The most common usage of PHP is building CMS websites like WordPress, e-commerce platforms like Magento, and social networks like Facebook. The PHP language has a very large community of developers providing support at any time. In the following headings, we will explain different ways of installing PHP8.3.<\/p>\n\n\n\n<p>Installing PHP8.3 on AlmaLinux 10 is a straightforward process that may take a couple of minutes or slightly longer, depending on the installation method. Let&#8217; get started!<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A server running AlmaLinux 10 OS<\/li>\n\n\n\n<li>User privileges: root or non-root user with sudo privileges<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update the System<\/h2>\n\n\n\n<p>Before we start with the installation of PHP, we will update the system packages to their latest versions. Execute the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf update -y &amp;&amp; sudo dnf upgrade -y<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Install PHP via the default Repository<\/h2>\n\n\n\n<p>The good thing about AlmaLinux 10 and PHP 8.3 is that PHP 8.3 is included and enabled in the AlmaLinux 10 OS by default. So installing via this repo is a straightforward process by executing the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install php -y<\/pre>\n\n\n\n<p>Once installed, to verify the version, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php -v<\/pre>\n\n\n\n<p>You should receive output similar to this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@test.vps ~]# php -v<br>PHP 8.3.19 (cli) (built: Mar 12 2025 13:10:27) (NTS gcc x86_64)<br>Copyright (c) The PHP Group<br>Zend Engine v4.3.19, Copyright (c) Zend Technologies<br>    with Zend OPcache v8.3.19, Copyright (c), by Zend Technologies<\/pre>\n\n\n\n<p>To install other PHP extensions, you can use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install php-cli php-fpm php-curl php-mysqlnd php-gd php-readline php-mbstring php-apcu php-xml php-dom php-opcache php-zip php-intl php-common php-bcmath php-json -y<\/pre>\n\n\n\n<p>To check the installed PHP extension, you can use the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">php -m<\/pre>\n\n\n\n<p>The output will be long and will look like this:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@test.vps ~]# php -m<br>[PHP Modules]<br>apcu<br>bcmath<br>bz2<br>calendar<br>Core<br>ctype<br>curl<br>date<br>dom<br>exif<br>fileinfo<br>filter<br>ftp<br>gd<br>gettext<br>hash<br>iconv<br>intl<br>json<br>libxml<br>mbstring<br>mysqli<br>mysqlnd<br>openssl<br>pcntl<br>pcre<br>PDO<br>pdo_mysql<br>pdo_sqlite<br>Phar<br>random<br>readline<br>Reflection<br>session<br>SimpleXML<br>sockets<br>SPL<br>sqlite3<br>standard<br>tokenizer<br>xml<br>xmlreader<br>xmlwriter<br>xsl<br>Zend OPcache<br>zip<br>zlib<br><br>[Zend Modules]<br>Zend OPcache<\/pre>\n\n\n\n<p>This was installing PHP 8.3 via the default repo. Let&#8217;s proceed to the next heading, where we will explain how to install it from source.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Installing PHP8.3 from Source<\/h2>\n\n\n\n<p>The installation of PHP8.3 on AlmaLinux 10 from source requires several steps, such as installing prerequisites, downloading the PHP8.3 version, configuring, compiling, and lastly installing. We will go through these steps in this heading. Let&#8217;s get things done!<\/p>\n\n\n\n<p>First, enable the power tools repo, necessary for the PHP prerequisites.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf config-manager --set-enabled crb<\/pre>\n\n\n\n<p>To install the required prerequisites, execute the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo dnf install -y wget tar gcc gcc-c++ make autoconf libxml2-devel sqlite-devel curl-devel openssl-devel bzip2-devel libjpeg-turbo-devel libpng-devel freetype-devel libwebp-devel libxslt-devel libicu-devel systemd-devel oniguruma-devel<\/pre>\n\n\n\n<p>Once the prerequisites are installed, the next step is to download the exact PHP 8.3 version. In the previous heading, we installed PHP 8.3.19 via the default repo, and now let&#8217;s download it so we can install from source:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">cd \/opt<br><br>wget https:\/\/www.php.net\/distributions\/php-8.3.19.tar.gz<br><br>tar -xzf php-8.3.19.tar.gz<br><br>cd php-8.3.19<\/pre>\n\n\n\n<p>Next is to configure the PHP with the PHP extensions:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">.\/configure --prefix=\/usr\/local\/php8.3 \\<br>            --with-config-file-path=\/usr\/local\/php8.3\/etc \\<br>            --with-config-file-scan-dir=\/usr\/local\/php8.3\/etc\/php.d \\<br>            --enable-mbstring \\<br>            --enable-mysqlnd \\<br>            --with-curl \\<br>            --with-openssl \\<br>            --with-zlib \\<br>            --with-webp \\<br>            --enable-fpm \\<br>            --with-fpm-user=nginx \\<br>            --with-fpm-group=nginx<\/pre>\n\n\n\n<p>Once, compile the PHP with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">make -j$(nproc)<\/pre>\n\n\n\n<p>You should allow some time for the compilation process to finish. It took 10 minutes to compile it. Once the compilation is done, we can install PHP 8.3 with the command below:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">sudo make install<\/pre>\n\n\n\n<p>After the installation, we can check the installed version with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">\/usr\/local\/php8.3\/bin\/php -v\n\nYou should get the following output:<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@localhost php-8.3.19]# \/usr\/local\/php8.3\/bin\/php -v\nPHP 8.3.19 (cli) (built: Aug 14 2025 17:36:26) (NTS)\nCopyright (c) The PHP Group\nZend Engine v4.3.19, Copyright (c) Zend Technologies\n\nTo make a shortcut of this command, we can simply make a symbolic link:<\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">ln -s \/usr\/local\/php8.3\/bin\/php \/usr\/bin\/php<\/pre>\n\n\n\n<p>Now you can check the installed version with the same command as in the previous heading:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[root@test.vps php-8.3.19]# <strong>php -v<\/strong><br>PHP 8.3.19 (cli) (built: Aug 14 2025 17:36:26) (NTS)<br>Copyright (c) The PHP Group<br>Zend Engine v4.3.19, Copyright (c) Zend Technologies<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Conculsion<\/h2>\n\n\n\n<p>That&#8217;s it. You successfully installed PHP8.3 on AlmaLinux 10. If you want to install PHP8.3 fast, you can use the first option with the default repo. Otherwise, if you want to install a specific version of PHP8.3. <strong>x<\/strong>, then you can use the second option from the source.<\/p>\n\n\n\n<p>If you have difficulties with this installation, our Linux admins will help you with any aspect. You need to sign up for one of our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\">monthly hosting management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\">per-incident server support<\/a> plans. Do not hesitate to contact us at any time. We are available 24\/7.<\/p>\n\n\n\n<p>If you liked this post teaching you how to install PHP 8.3 on AlmaLinux 10, please share it with your friends or leave a comment below letting us know.<\/p><div id=\"linux-2359322132\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this blog post, we will explain how to install PHP 8.3 on AlmaLinux 10 OS. PHP is an open-source scripting language widely used designed mostly for web development. PHP is a versatile language that can be used for different tasks, such as creating dynamic web pages and applications, managing sessions, and interacting with databases. [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2415,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[315],"tags":[317,199,269],"class_list":["post-2407","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-almalinux","tag-almalinux-10","tag-how-to-install","tag-php-8-3"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install PHP 8.3 on AlmaLinux 10 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Learn how to install PHP 8.3 on AlmaLinux 10 using our latest guide or get our Linux engineers to install it all for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install PHP 8.3 on AlmaLinux 10 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Learn how to install PHP 8.3 on AlmaLinux 10 using our latest guide or get our Linux engineers to install it all for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-php-8.3-on-almalinux-10.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to install PHP 8.3 on AlmaLinux 10\",\"datePublished\":\"2025-10-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/\"},\"wordCount\":614,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-php-8.3-on-almalinux-10.webp\",\"keywords\":[\"almalinux 10\",\"how to install\",\"php 8.3\"],\"articleSection\":[\"AlmaLinux\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/\",\"name\":\"How to install PHP 8.3 on AlmaLinux 10 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-php-8.3-on-almalinux-10.webp\",\"datePublished\":\"2025-10-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Learn how to install PHP 8.3 on AlmaLinux 10 using our latest guide or get our Linux engineers to install it all for you.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-php-8.3-on-almalinux-10.webp\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/how-to-install-php-8.3-on-almalinux-10.webp\",\"width\":742,\"height\":410,\"caption\":\"How to Install PHP 8.3 on AlmaLinux 10\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-php-8-3-on-almalinux-10\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install PHP 8.3 on AlmaLinux 10\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install PHP 8.3 on AlmaLinux 10 | LinuxHostSupport","description":"Learn how to install PHP 8.3 on AlmaLinux 10 using our latest guide or get our Linux engineers to install it all for you.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/","og_locale":"en_US","og_type":"article","og_title":"How to install PHP 8.3 on AlmaLinux 10 | LinuxHostSupport","og_description":"Learn how to install PHP 8.3 on AlmaLinux 10 using our latest guide or get our Linux engineers to install it all for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-10-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-php-8.3-on-almalinux-10.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to install PHP 8.3 on AlmaLinux 10","datePublished":"2025-10-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/"},"wordCount":614,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-php-8.3-on-almalinux-10.webp","keywords":["almalinux 10","how to install","php 8.3"],"articleSection":["AlmaLinux"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/","name":"How to install PHP 8.3 on AlmaLinux 10 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-php-8.3-on-almalinux-10.webp","datePublished":"2025-10-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Learn how to install PHP 8.3 on AlmaLinux 10 using our latest guide or get our Linux engineers to install it all for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-php-8.3-on-almalinux-10.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/10\/how-to-install-php-8.3-on-almalinux-10.webp","width":742,"height":410,"caption":"How to Install PHP 8.3 on AlmaLinux 10"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-php-8-3-on-almalinux-10\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install PHP 8.3 on AlmaLinux 10"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2407","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2407"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2407\/revisions"}],"predecessor-version":[{"id":2409,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2407\/revisions\/2409"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2415"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2407"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2407"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2407"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}