top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are PHP Misc functions?

0 votes
537 views
What are PHP Misc functions?
posted May 31, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

The misc. functions are part of the PHP core. No installation is required to use these functions.

some of misc functions
- ignore_user_abort
- browscap
- highlight.bg
- highlight.default
- highlight.html

answer Jun 30, 2018 by Maninder Bath
0 votes

The misc. functions were only placed here because none of the other categories seemed to fit.
The misc. functions are part of the PHP core. No installation is required to use these functions.

some of misc functions
- ignore_user_abort
- highlight.bg
- highlight.default
- highlight.html
- browscap

answer Aug 14, 2019 by Siddhi Patel
Similar Questions
+1 vote

What is the "->" operator for functions called?

At the bottom of PHP: Operators - Manual (http://php.net/manual/en/language.operators.php) is the note:

"The -> operator, not listed above, is called "object operator" (T_OBJECT_OPERATOR)."

It has been down-voted 81 times. Is that because the operator is not called the "object operator"? Or is it because the note says that the operator is not listed?

I apologize if my criticism is not appropriate, but the operator is not properly documented. The "->" operator should be listed among the other PHP operators and there should be documentation of it.

The C++ standard calls the "." and "->" operators the "dot" and "arrow" operators, correspondingly. For example, see "5.2.4 Pseudo destructor call" in: http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4296.pdf
That is the latest draft of the newest C++ standard.

PHP can call its "->" operator whatever the designers decide, but there should be a definition to eliminate the confusion of different names depending on personal preference. A book I am reading calls the operator the "arrow operator". Is it called the object operator (as implied by the tag) or the arrow operator or something else?

...