We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db3e1a0 commit f64c0f9Copy full SHA for f64c0f9
1 file changed
frankenphp.go
@@ -714,13 +714,6 @@ func freeArgs(argv []*C.char) {
714
}
715
716
717
-func executePHPFunction(functionName string) bool {
718
- cFunctionName := C.CString(functionName)
719
- defer C.free(unsafe.Pointer(cFunctionName))
720
-
721
- return C.frankenphp_execute_php_function(cFunctionName) == 1
722
-}
723
724
// Ensure that the request path does not contain null bytes
725
func requestIsValid(r *http.Request, rw http.ResponseWriter) bool {
726
if !strings.Contains(r.URL.Path, "\x00") {
0 commit comments