Changeset 230 for branches/xpascal/Generators/GeneratorPhp.pas
- Timestamp:
- Jun 26, 2023, 12:08:45 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/xpascal/Generators/GeneratorPhp.pas
r224 r230 241 241 else if FunctionDef.InternalName = 'Write' then AddTextLine('echo($Text);') 242 242 else if FunctionDef.InternalName = 'IntToStr' then AddTextLine('return $Value;') 243 else if FunctionDef.InternalName = 'StrToInt' then AddTextLine('return $Value;'); 243 else if FunctionDef.InternalName = 'StrToInt' then AddTextLine('return $Value;') 244 else if FunctionDef.InternalName = 'BoolToStr' then AddTextLine('return $Value;') 245 else if FunctionDef.InternalName = 'StrToBool' then AddTextLine('return $Value;'); 244 246 Indent := Indent - 1; 245 247 AddTextLine('}');
Note:
See TracChangeset
for help on using the changeset viewer.