H
H
hulktoster2021-07-28 10:36:53
linux
hulktoster, 2021-07-28 10:36:53

Which Linux OS compiler converts the code I write to binary code?

Let's say I wrote some php or html code. What Linux OS compiler or what other additional tools (perhaps some low-level language) translate this code into binary code so that the computer understands what I wrote?

PS Also interested in this question regarding Windows OS.

Answer the question

In order to leave comments, you need to log in

5 answer(s)
A
Alexey Dmitriev, 2021-07-28
@hulktoster

It is not the compiler that works here, but the language interpreter.

B
BorLaze, 2021-07-28
@BorLaze

Strange question from an HTML programmer...

V
Vladimir Korotenko, 2021-07-28
@firedragon

For php coding use https://www.zend.com/products/zend-guard
For css sass processors
For js libraries obfuscators
For html minifiers
All this will complicate access to your sources, and at some point it will be cheaper for thieves to write from scratch .

A
Adamos, 2021-07-28
@Adamos

You are delirious. These languages ​​are generally not directly executed by the computer.
Accordingly, they are "translated into binary code" in much the same way as a Word document.

R
res2001, 2021-07-28
@res2001

php is an interpreted language. Those. it is not translated into machine code. The PHP source code is executed by the php language interpreter.
HTML - has nothing to do with machine codes at all - it's a markup language. The browser interprets it, builds the DOM based on it, and draws the web page.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question