---
title: "Will comparison of string \"10\" and integer 11 work in PHP?"  
description: "Will comparison of string \"10\" and integer 11 work in PHP?"  
author: "Anonymous User"  
published: 2011-06-13  
updated: 2020-09-19  
canonical: https://www.mindstick.com/interview/1042/will-comparison-of-string-10-and-integer-11-work-in-php  
category: "php"  
tags: ["php"]  
reading_time: 1 minute  

---

# Will comparison of string "10" and integer 11 work in PHP?

Yes, internally PHP will cast everything to the integer type, so numbers 10 and 11 will be compared.

## Answers

### Answer by Anonymous User

Yes, internally PHP will cast everything to the integer type, so numbers 10 and 11 will be compared.


---

Original Source: https://www.mindstick.com/interview/1042/will-comparison-of-string-10-and-integer-11-work-in-php

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
